Commit 0aae3468 by Manuel

ABM reunion c/titulo creada

0 parents
*.pyc
\ No newline at end of file
{
// Utilizar IntelliSense para aprender acerca de los posibles atributos.
// Mantenga el puntero para ver las descripciones de los existentes atributos
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python odoo 10 - Adrian",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.pythonPath}",
//"program": "${file}", use this to debug opened file.
"program": "/home/administrador/odoo10/odoo-bin",
"args": [
"-d hydra_adrian -u asw_hydra --dev=xml --db-filter=hydra_adrian --config=/home/administrador/config10",
],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"debugOptions": [
"RedirectOutput"
]
},
{
"name": "Python odoo 10 - Ramiro",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.pythonPath}",
//"program": "${file}", use this to debug opened file.
"program": "/home/ramiro/odoo10/odoo-bin",
"args": [
"-d hydra_ramiro -u asw_hydra --dev=xml --db-filter=hydra_ramiro --config=/home/ramiro/config10",
],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"debugOptions": [
"RedirectOutput"
]
},
{
"name": "Python odoo 10 - Nahuel",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.pythonPath}",
//"program": "${file}", use this to debug opened file.
"program": "/home/nahuel/odoo10/odoo-bin",
"args": [
"-d hydra_nahuel -u asw_hydra --dev=xml --db-filter=hydra_nahuel --config=/home/nahuel/config10",
],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"debugOptions": [
"RedirectOutput"
]
}
]
}
\ No newline at end of file
{
"python.linting.pylintEnabled": false
}
\ No newline at end of file
from . import models
\ No newline at end of file
# -*- coding: utf-8 -*-
###############################################################################
#
# Odoo, Open Source Management Solution
#
# Copyright (c) All rights reserved:
# (c) 2015 TM_FULLNAME
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses
#
###############################################################################
{
'name': 'asw_minuta_reunion',
'summary': 'asw_minuta_reunion Module Project',
'version': '1.0',
'description': """
asw_minuta_reunion Module Project.
==============================================
""",
'author': 'manuel',
'maintainer': 'manuel',
'contributors': ['manuel <manuel@gmail.com>'],
'website': 'http://www.gitlab.com/manuel',
'license': 'AGPL-3',
'category': 'Uncategorized',
'depends': [
'base'
],
'external_dependencies': {
'python': [
],
},
'data': [
'view/reunion_view.xml',
'view/menu.xml',
'security/ir.model.access.csv',
],
'demo': [
],
'js': [
],
'css': [
],
'qweb': [
],
'images': [
],
'test': [
],
'installable': True
}
from . import reunion
\ No newline at end of file
# -*- coding: utf-8 -*-
from openerp import models, fields, api
from odoo import exceptions
class asw_reun(models.Model):
_name = 'asw.reun'
_description = 'Reunion'
reun_titulo = fields.Char(
string=u'Titulo',
)
\ No newline at end of file
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_asw_reun,asw_reun,model_asw_reun,,1,1,1,1
\ No newline at end of file
<openerp>
<data>
<record model="ir.module.category" id="module_category_asw_amce">
<field name="name">AMCE</field>
<field name="description">Gestion AMCE</field>
<field name="sequence">1</field>
</record>
<record model="res.groups" id="module_category_asw_amce_data_entry">
<field name="name">Data Entry</field>
<field name="category_id" eval="ref('module_category_asw_amce')"/>
<field name="sequence">1</field>
</record>
<record model="res.groups" id="module_category_asw_amce_administrador">
<field name="name">Coordinador</field>
<field name="category_id" eval="ref('module_category_asw_amce')"/>
<field name="sequence">2</field>
</record>
<record model="res.groups" id="module_category_asw_amce_actualizador_precios">
<field name="name">Actualizacion precios</field>
<field name="category_id" eval="ref('module_category_asw_amce')"/>
<field name="sequence">2</field>
</record>
<record model="res.groups" id="module_category_asw_amce_presentismo">
<field name="name">Presentismo</field>
<field name="category_id" eval="ref('module_category_asw_amce')"/>
<field name="sequence">2</field>
</record>
<record model="res.groups" id="module_category_asw_amce_guardias_fabrica">
<field name="name">Guardias de Fábrica</field>
<field name="category_id" eval="ref('module_category_asw_amce')"/>
<field name="sequence">2</field>
</record>
</data>
</openerp>
\ No newline at end of file
File mode changed
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<data noupdate="0">
<!-- Elemento Root -->
<menuitem name="Minuta de reunion" id="asw_mr_root"/>
<!-- Elemento Grupe -->
<menuitem name="Datos" id="asw_mr_grupo_abm" parent="asw_mr_root"/>
<menuitem id='menu_reuniones' name = 'Reuniones' action ='action_reun_act_window' parent = 'asw_mr_root' />
</data>
</odoo>
<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: minh.hquang09@gmail.com -->
<odoo>
<data>
<!--
<template id="customizing_css_asw_bootstrap" inherit_id="website.layout" name="customizing_css_asw_bootstrap">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/asw_bootstrap/static/src/css/bootstrap.css"/>
<script src="/asw_bootstrap/static/src/js/jquery-3.3.1.min.js"></script>
</xpath>
</template>
-->
</data>
</odoo>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<data noupdate="0">
<record id="view_form_reun" model="ir.ui.view">
<field name="name">Reunion</field>
<field name="model">asw.reun</field>
<field name="arch" type="xml">
<form string='Reunion'>
<sheet>
<group>
<field name="reun_titulo" />
</group>
</sheet>
</form>
</field>
</record>
<record id="view_tree_reun" model="ir.ui.view">
<field name="name">Reunion</field>
<field name="model">asw.reun</field>
<field name="arch" type="xml">
<tree string="Reuniones">
<field name="reun_titulo" />
</tree>
</field>
</record>
<record id="view_search_reun" model="ir.ui.view">
<field name="name">Reunion</field>
<field name="model">asw.reun</field>
<field name="arch" type="xml">
<search>
</search>
</field>
</record>
<record id="action_reun_act_window" model="ir.actions.act_window">
<field name="type">ir.actions.act_window</field>
<field name="name">reunion</field>
<field name="res_model">asw.reun</field>
<field name="view_mode">tree,form</field>
<field name="view_type">form</field>
<field name="target">current</field>
</record>
</data>
</odoo>
\ No newline at end of file
File mode changed
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!