mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 18:29:08 +02:00
add new module
This commit is contained in:
15
tra_backend_Product/models/partner.py
Normal file
15
tra_backend_Product/models/partner.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import time
|
||||
import logging
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.tools import DEFAULT_SERVER_DATETIME_FORMAT
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.addons.base.models.res_partner import WARNING_MESSAGE, WARNING_HELP
|
||||
from psycopg2 import sql, DatabaseError
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = 'res.partner'
|
||||
|
||||
street3 = fields.Char('Steet3')
|
||||
street4 = fields.Char('Steet4')
|
||||
street5 = fields.Char('Steet5')
|
||||
Reference in New Issue
Block a user