Initial commit: Sale packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 14e3d26998
6469 changed files with 2479670 additions and 0 deletions

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import sale_order_line

View file

@ -0,0 +1,40 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, models
class SaleOrderLine(models.Model):
_inherit = "sale.order.line"
@api.depends('analytic_line_ids.amount', 'qty_delivered_method')
def _compute_purchase_price(self):
timesheet_sols = self.filtered(
lambda sol: sol.qty_delivered_method == 'timesheet' and not sol.product_id.standard_price
)
# filter out the sale.order.lines called by this override of _compute_purchase_price for which
# we don't want the purchase price to be recomputed. Without filtring out the sale.order.lines
# for which the recomputation was triggered by a depency from another override of _compute_purchase_price
service_non_timesheet_sols = self.filtered(
lambda sol: not sol.is_expense and sol.is_service and
sol.product_id.service_policy == 'ordered_prepaid' and sol.state == 'sale'
)
super(SaleOrderLine, self - timesheet_sols - service_non_timesheet_sols)._compute_purchase_price()
if timesheet_sols:
group_amount = self.env['account.analytic.line'].read_group(
[('so_line', 'in', timesheet_sols.ids), ('project_id', '!=', False)],
['so_line', 'amount:sum', 'unit_amount:sum'],
['so_line'])
mapped_sol_timesheet_amount = {
amount['so_line'][0]: -amount['amount'] / amount['unit_amount'] if amount['unit_amount'] else 0.0
for amount in group_amount
}
for line in timesheet_sols:
line = line.with_company(line.company_id)
product_cost = mapped_sol_timesheet_amount.get(line.id, line.product_id.standard_price)
product_uom = line.product_uom or line.product_id.uom_id
if product_uom != line.company_id.project_time_mode_id and\
product_uom.category_id.id == line.company_id.project_time_mode_id.category_id.id:
product_cost = product_uom._compute_quantity(
product_cost,
line.company_id.project_time_mode_id
)
line.purchase_price = line._convert_price(product_cost, product_uom)