-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Conversation
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
d2c702a
to
eed4ae3
Compare
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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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'))])} |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
good work!!
quantity and pricelist whenever mentioned field will change on that time
based on condition book_price will be calculated
task - 4602859