You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
670 B
18 lines
670 B
# Copyright 2018 Oihane Crucelaegui - AvanzOSC
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
social_rss = fields.Char('RSS')
|
|
social_twitter = fields.Char('Twitter Account')
|
|
social_facebook = fields.Char('Facebook Account')
|
|
social_github = fields.Char('GitHub Account')
|
|
social_linkedin = fields.Char('LinkedIn Account')
|
|
social_youtube = fields.Char('Youtube Account')
|
|
social_googleplus = fields.Char('Google+ Account')
|
|
social_flickr = fields.Char('Flickr Account')
|
|
social_slideshare = fields.Char('Slideshare Account')
|