mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-21 15:32:03 +02:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# Copyright 2019 Elico Corp, Dominique K. <dominique.k@elico-corp.com.sg>
|
|
# Copyright 2019 Ecosoft Co., Ltd., Kitti U. <kittiu@ecosoft.co.th>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class PurchaseOrder(models.Model):
|
|
_inherit = "purchase.order"
|
|
|
|
def copy_data(self, default=None):
|
|
if default is None:
|
|
default = {}
|
|
default["order_line"] = [
|
|
(0, 0, line.copy_data()[0])
|
|
for line in self.order_line
|
|
if not line.is_deposit
|
|
]
|
|
return super().copy_data(default)
|
|
|
|
|
|
class PurchaseOrderLine(models.Model):
|
|
_inherit = "purchase.order.line"
|
|
|
|
is_deposit = fields.Boolean(
|
|
string="Is a deposit payment",
|
|
help="Deposit payments are made when creating bills from a purchase"
|
|
" order. They are not copied when duplicating a purchase order.",
|
|
)
|
|
|
|
def _prepare_account_move_line(self, move=False):
|
|
res = super()._prepare_account_move_line(move=move)
|
|
if self.is_deposit:
|
|
res["quantity"] = -1 * self.qty_invoiced
|
|
return res
|