mirror of
https://github.com/ForgeFlow/stock-rma.git
synced 2025-01-21 12:57:49 +02:00
88 lines
3.1 KiB
Python
88 lines
3.1 KiB
Python
# Copyright 2017-22 ForgeFlow S.L.
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class AccountMoveLine(models.Model):
|
|
_inherit = "account.move.line"
|
|
|
|
@api.model
|
|
def name_search(self, name, args=None, operator="ilike", limit=100):
|
|
"""Allows to search by Invoice number. This has to be done this way,
|
|
as Odoo adds extra args to name_search on _name_search method that
|
|
will make impossible to get the desired result."""
|
|
if not args:
|
|
args = []
|
|
lines = self.search([("move_id.name", operator, name)] + args, limit=limit)
|
|
res = lines.name_get()
|
|
if limit:
|
|
limit_rest = limit - len(lines)
|
|
else:
|
|
# limit can be 0 or None representing infinite
|
|
limit_rest = limit
|
|
if limit_rest or not limit:
|
|
args += [("id", "not in", lines.ids)]
|
|
res += super(AccountMoveLine, self).name_search(
|
|
name, args=args, operator=operator, limit=limit_rest
|
|
)
|
|
return res
|
|
|
|
def name_get(self):
|
|
res = []
|
|
if self.env.context.get("rma"):
|
|
for inv in self:
|
|
if inv.move_id.ref:
|
|
res.append(
|
|
(
|
|
inv.id,
|
|
"INV:%s | REF:%s | ORIG:%s | PART:%s | QTY:%s"
|
|
% (
|
|
inv.move_id.name or "",
|
|
inv.move_id.invoice_origin or "",
|
|
inv.move_id.ref or "",
|
|
inv.product_id.name,
|
|
inv.quantity,
|
|
),
|
|
)
|
|
)
|
|
elif inv.move_id.name:
|
|
res.append(
|
|
(
|
|
inv.id,
|
|
"INV:%s | ORIG:%s | PART:%s | QTY:%s"
|
|
% (
|
|
inv.move_id.name or "",
|
|
inv.move_id.invoice_origin or "",
|
|
inv.product_id.name,
|
|
inv.quantity,
|
|
),
|
|
)
|
|
)
|
|
else:
|
|
res.append(super(AccountMoveLine, inv).name_get()[0])
|
|
return res
|
|
else:
|
|
return super(AccountMoveLine, self).name_get()
|
|
|
|
def _compute_rma_count(self):
|
|
for invl in self:
|
|
rma_lines = invl.mapped("rma_line_ids")
|
|
invl.rma_line_count = len(rma_lines)
|
|
|
|
rma_line_count = fields.Integer(compute="_compute_rma_count", string="# of RMA")
|
|
rma_line_ids = fields.One2many(
|
|
comodel_name="rma.order.line",
|
|
inverse_name="account_move_line_id",
|
|
string="RMA",
|
|
readonly=True,
|
|
help="This will contain the RMA lines for the invoice line",
|
|
)
|
|
|
|
rma_line_id = fields.Many2one(
|
|
comodel_name="rma.order.line",
|
|
string="RMA line",
|
|
ondelete="set null",
|
|
help="This will contain the rma line that originated this line",
|
|
)
|