1
如何在每次刷新頁面時執行一個從Odoo數據庫中記錄數據的python函數,我試過json/rpc但文檔不是那麼清晰!請幫助odoo:每次刷新頁面時執行python函數
這是我的函數:
def _id_facture(self):
self.env.cr.execute("select max(id) from facturation_facturation")
id_facture_tuple=self.env.cr.fetchone()
self.id_facture = id_facture_tuple[0]+1
當你刷新你的頁面時,它有什麼改變? –