Commit 75aea012 authored by Sebastian Castro's avatar Sebastian Castro
Browse files

se crea estructura del modulo

parents
from . import models
\ No newline at end of file
{
'name': 'Qv_empleados',
'description': 'se crea modulo como trabajo introspeccion del semillero de desarrollo de odoo',
'summary': 'Unete al mundo de odoo',
'author': 'Sebastian cASTRO',
'website': 'www.qvision.com.co',
'license': 'LGPL-3',
'depends': [
'base','hr'
],
'data': [
'views/semillero_empleado.xml'
],
'auto_install': False,
'application': False,
'assets': {
}
}
\ No newline at end of file
from. import empleado
\ No newline at end of file
from odoo import models,fields
class QVEmpleados(models.Model):
_inherit = 'hr.employee'
grupo_sanguineo = fields.Selection([
('OP','O+'),
('ON','O-'),
('BP','A+'),
('BN','A-')],'RH')
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<odoo>
</odoo>
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment