Browse Source

-> added help tooltips

pull/21/head
blaggacao 11 years ago
parent
commit
d2a6e0f9d2
  1. 11
      res_partner_fiscal_document/res_partner_idtype.py

11
res_partner_fiscal_document/res_partner_idtype.py

@ -33,5 +33,12 @@ class ResPartnerIDtype(models.Model):
sequence = fields.Integer()
active = fields.Boolean(default=True)
note = fields.Text()
on_company = fields.Boolean(string=u'On Company?')
on_contact = fields.Boolean(string=u'On Contact?', default=True)
on_company = fields.Boolean(
string=u'On Company?',
help="Id type for use on Company"
)
on_contact = fields.Boolean(
string=u'On Contact?',
default=True,
help="Id type for use on Contacts"
)
Loading…
Cancel
Save