Hi, im new to odoo kindly help me thanks.
my scenario:
I have created a working module name 'shipping info' in the odoo,
class SI(orm.Model):
_name: 'SI'
_column: {
'Shipaddr':fields.char('Shipping Address',size(100)),
}
I have also create a database and table in postgresql, i also install pgAdmin3 so it will be easy for me to monitor records in the database because it has gui.
databasename is 'sirecord'
table name is 'sirecordtable'
table consists of fields 'address' which has datatype of char which has size of(100)
im wondering (is it possible?) how can i transfer the input data in the shipping info in odoo to my postgresql database
for example i put record of 'my address123' into the field in my module and then i save it, how will the postgresql catch this. thanks.