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.
51 lines
1.7 KiB
51 lines
1.7 KiB
# coding: utf-8
|
|
# @ 2015 Valentin CHEMIERE @ Akretion
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from openerp import models, fields, api
|
|
from .abstract_task import AbstractTask
|
|
from .helper import itersubclasses
|
|
|
|
|
|
class Location(models.Model):
|
|
_name = 'external.file.location'
|
|
_description = 'Description'
|
|
|
|
name = fields.Char(string='Name', required=True)
|
|
protocol = fields.Selection(selection='_get_protocol', required=True)
|
|
address = fields.Char(string='Address', required=True)
|
|
port = fields.Integer()
|
|
login = fields.Char()
|
|
password = fields.Char()
|
|
task_ids = fields.One2many('external.file.task', 'location_id')
|
|
hide_login = fields.Boolean()
|
|
hide_password = fields.Boolean()
|
|
hide_port = fields.Boolean()
|
|
|
|
def _get_protocol(self):
|
|
res = []
|
|
for cls in itersubclasses(AbstractTask):
|
|
if not cls._synchronize_type:
|
|
cls_info = (cls._key, cls._name)
|
|
res.append(cls_info)
|
|
elif not cls._synchronize_type and cls._key and cls._name:
|
|
pass
|
|
return res
|
|
|
|
@api.onchange('protocol')
|
|
def onchange_protocol(self):
|
|
for cls in itersubclasses(AbstractTask):
|
|
if cls._key == self.protocol:
|
|
self.port = cls._default_port
|
|
if cls._hide_login:
|
|
self.hide_login = True
|
|
else:
|
|
self.hide_login = False
|
|
if cls._hide_password:
|
|
self.hide_password = True
|
|
else:
|
|
self.hide_password = False
|
|
if cls._hide_port:
|
|
self.hide_port = True
|
|
else:
|
|
self.hide_port = False
|