Server Framework 101 - Solusi 12
solusi untuk tutorial https://www.odoo.com/documentation/18.0/developer/tutorials/server_framework_101/13_other_module.html Buat modul baru dengan nama estate_account (Anda sudah melakukannya pada awal tutoral ini ketika membuat estate modul). file estate_account/__init__.py from . import estate_property file estate_account/__manifest__.py { 'name' : 'Estate Account' , 'depends' :[ 'estate' , 'account' , ], 'auto_install' : True } file estate_account/models/__init__.py from . import estate_property file estate_account/models/estate_property.py # -*- coding: utf-8 -*- from odoo import models , Command class EstateProperty ( models . Model ): # ---------------------------------------- Private Attributes --------------------------------- _inherit = "estate.property" # ---------------------------------------- Action M...