Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Dự án
- MRP
Câu hỏi này đã bị gắn cờ
Hello,
Please try this code,
@api.depends('product_uom_qty', 'discount', 'price_unit', 'tax_id','receive_in_advance')
def _compute_amount(self):
"""Compute the amounts of the SO line."""
for line in self:
price = line.price_unit * (1 - (line.discount or 0.0) / 100.0)
if line.product_uom_qty and line.receive_in_advance:
price = price - (line.receive_in_advance/line.product_uom_qty)
taxes = line.tax_id.compute_all(price, line.order_id.currency_id, line.product_uom_qty, product=line.product_id, partner=line.order_id.partner_shipping_id)
line.update({
'price_tax': sum(t.get('amount', 0.0) for t in taxes.get('taxes', [])),
'price_total': taxes['total_included'],
'price_subtotal': taxes['total_excluded'],
})
If you use UOM, then please change the code accordingly.
Hope this will help you,
Thanks
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng ký| Bài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
|---|---|---|---|---|
|
How to add a sequence a field?
Đã xử lý
|
|
2
thg 12 24
|
22330 | |
|
|
0
thg 9 24
|
1561 | ||
|
|
3
thg 8 24
|
3079 | ||
|
|
0
thg 2 24
|
2251 | ||
|
|
0
thg 2 24
|
1632 |
how you calculate tax amount?is it tax of subtotal-received in advance?