Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ADD] product_pricelist: Book price added in Sale Order Line #398

Closed

Conversation

ppch-odoo
Copy link

@ppch-odoo ppch-odoo commented Feb 26, 2025

  • Models and views are inherited of sale order line and account move line
  • Defined _compute_book_price function which will be depends on product_id,
    quantity and pricelist whenever mentioned field will change on that time
    based on condition book_price will be calculated
  • Book price is only visible in customer invoices.
  • In account_move_line set book_price as related field
  • Instead of displayed book_price for all quantity changed to for only 1 quantity

task - 4602859

@robodoo
Copy link

robodoo commented Feb 26, 2025

Pull request status dashboard

Defined _compute_book_price function which will be depends on product_id,
quantity and invoice_origin
whenever above mentioned field will change on that time based on condition
book_price will be calculated

task - 4602859
Removed store=True as it is not needed.
Book price is only visible in customer invoices.
Code formatting done

task - 4602859
@ppch-odoo ppch-odoo force-pushed the 18.0-add-add-pricelist-price-ppch branch from d2c702a to eed4ae3 Compare February 26, 2025 08:23
optimized code for _compute_book_price for invoice lines

task - 4602859
if pricelist:
record.book_price = pricelist._get_product_price(
record.product_id, record.product_uom_qty
) * record.product_uom_qty

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why multiply again with uom_qty?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated
now it will display only for 1 quantity


@api.depends('product_id', 'quantity', 'move_id.invoice_origin')
def _compute_book_price(self):
sale_orders = {so.name: so for so in self.env['sale.order'].search([('name', 'in', self.mapped('move_id.invoice_origin'))])}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

instead of sale order you can get price;ist

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated
instead of compute field, book_price is set as related field so no any compute method

- In account_move_line set book_price as related instead of compute field
- Instead of displayed book_price for all quantity changed to for only 1 quantity
Copy link

@bhra-odoo bhra-odoo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.
good work!!

@ppch-odoo ppch-odoo changed the title [ADD] product_pricelist: models and views are inherited [ADD] product_pricelist: Book price added in Sale Order Line Mar 7, 2025
@ppch-odoo ppch-odoo closed this Mar 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants