Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
3926 Lượt xem

Hi,


Whever I update a quotation's price Odoo logs the price change on Chatter.


Here's an example:



However, I don't use Odoo to calculate taxes, so my Untaxed Amount will always be the same value as Total.


Therefor I would like to hide Untaxed Amount, like this:



How can I do that?


Thanks in advance!

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi,

    In odoo 14, if you check the account_move.py , they have set tracking is true for Untaxed amount

amount_untaxed = fields.Monetary(string='Untaxed Amount', store=True, readonly=True, tracking=True, compute='_compute_amount')

You can set tracking = False by inheriting account.move class and make sure you inherit the compute function too.

class AccountMove(models.Model):

    _inherit = "account.move"

    amount_untaxed = fields.Monetary(string='Untaxed Amount', store=True, readonly=True, tracking=False, compute='_compute_amount')

Ảnh đại diện
Huỷ bỏ
Tác giả

Worked perfectly, thanks!

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 12 22
3188
How to Hide Chatter Đã xử lý
2
thg 10 20
8243
1
thg 11 24
2864
2
thg 2 24
8981
0
thg 1 24
1464