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

  1. # Copyright 2018 Oihane Crucelaegui - AvanzOSC
  2. # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
  3. from odoo import fields, models
  4. class ResPartner(models.Model):
  5. _inherit = 'res.partner'
  6. social_rss = fields.Char('RSS')
  7. social_twitter = fields.Char('Twitter Account')
  8. social_facebook = fields.Char('Facebook Account')
  9. social_github = fields.Char('GitHub Account')
  10. social_linkedin = fields.Char('LinkedIn Account')
  11. social_youtube = fields.Char('Youtube Account')
  12. social_googleplus = fields.Char('Google+ Account')
  13. social_flickr = fields.Char('Flickr Account')
  14. social_slideshare = fields.Char('Slideshare Account')