123456789101112131415161718192021222324252627282930313233343536373839404142 |
- from openerp import models, fields, api, _
- class res_users(models.Model):
- _inherit = "res.users"
- _name = "res.users"
- document_mount = fields.Char('Document Mount',size=256,
- help='Local mount point')
- default_mount_agreement = fields.Char('Default Mount Rental Agreement',
- size=256,
- help='Local mount point for rental agreement')
- document_client = fields.Selection([('win','Windows Client'),
- ('unix','Linux/MacOSX Client'),
- ('web','Web Client')], 'Client')
-
-
-
-
-
|