Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
2 Antwoorden
4787 Weergaven

How to  to block the account move creation when purchase order receipt is confirmed?

Avatar
Annuleer
Beste antwoord

from odoo import models


class StockMove(models.Model):
    _inherit = "stock.move"

    def _account_entry_move(self):
        """ Accounting Valuation Entries """
        self.ensure_one()
        if self._is_in():
            return
        else:
            return super(StockMove, self)._account_entry_move()

Thanks

Avatar
Annuleer
Beste antwoord

Please elaborate more on your business case. If you don't to manage your books wth Odoo, then do not install Accounting. If you want to use integrated accounting feature, then proper account moves are a basic necessity and in all jurisdictions I know of, the time of physical receipt or delivery or the time of establishing a contractual relationship is the relevant event for an accounting entry.

Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
jun. 21
2157
0
mei 24
1706
0
mrt. 15
3918
1
mrt. 15
5494
3
aug. 25
1491