Commit f29dde1c by Maria Agustina

230

0 parents
# -*- coding: utf-8 -*-
from . import models
\ No newline at end of file
# -*- coding: utf-8 -*-
{
'name': "hgt_pedido_excel",
'summary': """
Modulo con ABM de importacion de pedidos hechos en Excel""",
'description': """
Modulo con ABM de importacion de pedidos hechos en Excel
""",
'author': 'ANAC SOFT',
'maintainer': 'ANAC SOFT',
'contributors': ['ANAC SOFT <ANAC SOFT@gmail.com>'],
'website': 'http://anacsoft.com',
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
# for the full list
'category': 'Uncategorized',
'version': '0.2020.11.23',
# any module necessary for this one to work correctly
'depends': [
'base',
'hgt_dispositivos',
'asw_adjuntos',
],
# always loaded
'data': [
# 'security/ir.model.access.csv',
'views/importaciones.xml',
'views/menu.xml',
],
# only loaded in demonstration mode
'demo': [
'demo/demo.xml',
],
'installable': True,
'application':True,
}
\ No newline at end of file
# -*- coding: utf-8 -*-
from . import controllers
\ No newline at end of file
# -*- coding: utf-8 -*-
from odoo import http
# class MyModule(http.Controller):
# @http.route('/my_module/my_module/', auth='public')
# def index(self, **kw):
# return "Hello, world"
# @http.route('/my_module/my_module/objects/', auth='public')
# def list(self, **kw):
# return http.request.render('my_module.listing', {
# 'root': '/my_module/my_module',
# 'objects': http.request.env['my_module.my_module'].search([]),
# })
# @http.route('/my_module/my_module/objects/<model("my_module.my_module"):obj>/', auth='public')
# def object(self, obj, **kw):
# return http.request.render('my_module.object', {
# 'object': obj
# })
\ No newline at end of file
<odoo>
<data>
<!-- -->
<!-- <record id="object0" model="my_module.my_module"> -->
<!-- <field name="name">Object 0</field> -->
<!-- <field name="value">0</field> -->
<!-- </record> -->
<!-- -->
<!-- <record id="object1" model="my_module.my_module"> -->
<!-- <field name="name">Object 1</field> -->
<!-- <field name="value">10</field> -->
<!-- </record> -->
<!-- -->
<!-- <record id="object2" model="my_module.my_module"> -->
<!-- <field name="name">Object 2</field> -->
<!-- <field name="value">20</field> -->
<!-- </record> -->
<!-- -->
<!-- <record id="object3" model="my_module.my_module"> -->
<!-- <field name="name">Object 3</field> -->
<!-- <field name="value">30</field> -->
<!-- </record> -->
<!-- -->
<!-- <record id="object4" model="my_module.my_module"> -->
<!-- <field name="name">Object 4</field> -->
<!-- <field name="value">40</field> -->
<!-- </record> -->
<!-- -->
</data>
</odoo>
\ No newline at end of file
# -*- coding: utf-8 -*-
from . import importaciones_excel
from . import adjuntos
\ No newline at end of file
No preview for this file type
No preview for this file type
# -*- coding: utf-8 -*-
from odoo import models, fields, api
from odoo.exceptions import UserError, ValidationError
from datetime import datetime
class asw_adjuntos(models.Model):
_inherit = 'asw.adjuntos'
imp_bajar = fields.Many2one(
string=u'Importaciones - Bajar',
comodel_name='hgt.importaciones_excel',
ondelete='restrict',
)
imp_subir = fields.Many2one(
string=u'Importaciones - Subir',
comodel_name='hgt.importaciones_excel',
ondelete='restrict',
)
\ No newline at end of file
# -*- coding: utf-8 -*-
from odoo import models, fields, api
class hgt_importaciones_excel(models.Model):
_name = 'hgt.importaciones_excel'
fecha = fields.Char(
string=u'Fecha',
)
bajar = fields.One2many(
string=u'Bajar Archivo',
comodel_name='asw.adjuntos',
inverse_name='imp_bajar',
)
subir = fields.One2many(
string=u'Subir Archivo',
comodel_name='asw.adjuntos',
inverse_name='imp_subir',
)
responsable = fields.Many2one(
string=u'Responsable',
comodel_name='res.users',
ondelete='restrict',
default=lambda self: self.env.user,
)
log = fields.Text(
string=u'log',
readonly=True,
)
estados = fields.Selection(
string=u'Estados',
selection=[('borrador', 'Borrador'), ('aprobado', 'Aprobado')]
)
fecha_aprobacion = fields.Datetime(
string=u'Fecha de aprobación',
default=fields.Datetime.now,
)
def aprobar(self):
self.estados = 'aprobado'
\ No newline at end of file
# -*- coding: utf-8 -*-
from odoo import models, fields, api
# class my_module(models.Model):
# _name = 'my_module.my_module'
# name = fields.Char()
# value = fields.Integer()
# value2 = fields.Float(compute="_value_pc", store=True)
# description = fields.Text()
#
# @api.depends('value')
# def _value_pc(self):
# self.value2 = float(self.value) / 100
\ No newline at end of file
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_my_module_my_module,my_module.my_module,model_my_module_my_module,,1,0,0,0
\ No newline at end of file
<odoo>
<data>
<record id="importaciones_excel_act_window" model="ir.actions.act_window">
<field name="type">ir.actions.act_window</field>
<field name="name">Importaciones Excel</field>
<field name="res_model">hgt.importaciones_excel</field>
<field name="view_mode">tree,form</field>
<field name="view_type">form</field>
<field name="target">current</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">Importe el primer Pedido</p>
</field>
<!-- <field name="domain">[]</field>
<field name="context">\{}</field>
<field name="search_view_id" ref="ir.ui.view" /> -->
</record>
<record id="view_tree_importaciones_excel_ui" model="ir.ui.view">
<field name="name">Importaciones Excel</field>
<field name="model">hgt.importaciones_excel</field>
<field name="arch" type="xml">
<tree>
<field name="responsable"/>
<field name="fecha" />
<field name="log" />
<field name="estados" />
<field name="fecha_aprobacion" />
</tree>
</field>
</record>
<record id="view_form_importaciones_excel_ui" model="ir.ui.view">
<field name="name">Importaciones Excel</field>
<field name="model">hgt.importaciones_excel</field>
<field name="arch" type="xml">
<form>
<header>
<field name="estados" widget="statusbar" />
<button type="object" name="aprobar" string="Aprobar" class='btn btn-primary btn-efectivo' attrs="{'invisible':[('estados','=', 'aprobado')]}"/>
</header>
<sheet>
<group col='4'>
<field colspan="2" name="responsable" attrs="{'readonly':[('estados','in','aprobado')]}"/>
<field colspan="2" name="fecha" attrs="{'readonly':[('estados','in','aprobado')]}" />
<field colspan="2" name="fecha_aprobacion" attrs="{'readonly':[('estados','in','aprobado')]}" />
</group>
<notebook>
<page string="Bajar">
<group>
<field name="bajar" nolabel="1" attrs="{'readonly':[('estados','in','aprobado')]}"/>
</group>
</page>
<page string="Subir">
<group>
<field name="subir" nolabel="1" attrs="{'readonly':[('estados','in','aprobado')]}"/>
</group>
</page>
</notebook>
<group col="4">
<field colspan="2" nolabel="1" name="log" attrs="{'readonly':[('estados','in','aprobado')]}"/>
</group>
</sheet>
</form>
</field>
</record>
<record id="view_search_importaciones_excel_ui" model="ir.ui.view">
<field name="name">Importaciones Excel</field>
<field name="model">hgt.importaciones_excel</field>
<field name="arch" type="xml">
<search>
<field name="responsable"/>
<field name="fecha" />
<field name="log" />
<field name="estados" />
<field name="fecha_aprobacion" />
</search>
</field>
</record>
</data>
</odoo>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<data noupdate="0">
<!-- Elemento Grupe -->
<menuitem name="Pedidos" sequence='20' id="hgt_pedido_excel_pedidos"/>
<menuitem name="Importaciones Excel" id="hgt_pedido_excel_pedidos_importaciones" parent="hgt_pedido_excel_pedidos" action='importaciones_excel_act_window'/>
</data>
</odoo>
\ No newline at end of file
<odoo>
<data>
<!-- <template id="listing"> -->
<!-- <ul> -->
<!-- <li t-foreach="objects" t-as="object"> -->
<!-- <a t-attf-href="#{ root }/objects/#{ object.id }"> -->
<!-- <t t-esc="object.display_name"/> -->
<!-- </a> -->
<!-- </li> -->
<!-- </ul> -->
<!-- </template> -->
<!-- <template id="object"> -->
<!-- <h1><t t-esc="object.display_name"/></h1> -->
<!-- <dl> -->
<!-- <t t-foreach="object._fields" t-as="field"> -->
<!-- <dt><t t-esc="field"/></dt> -->
<!-- <dd><t t-esc="object[field]"/></dd> -->
<!-- </t> -->
<!-- </dl> -->
<!-- </template> -->
</data>
</odoo>
\ No newline at end of file
<odoo>
<data>
<!-- explicit list view definition -->
<!--
<record model="ir.ui.view" id="my_module.list">
<field name="name">my_module list</field>
<field name="model">my_module.my_module</field>
<field name="arch" type="xml">
<tree>
<field name="name"/>
<field name="value"/>
<field name="value2"/>
</tree>
</field>
</record>
-->
<!-- actions opening views on models -->
<!--
<record model="ir.actions.act_window" id="my_module.action_window">
<field name="name">my_module window</field>
<field name="res_model">my_module.my_module</field>
<field name="view_mode">tree,form</field>
</record>
-->
<!-- server action to the one above -->
<!--
<record model="ir.actions.server" id="my_module.action_server">
<field name="name">my_module server</field>
<field name="model_id" ref="model_my_module_my_module"/>
<field name="state">code</field>
<field name="code">
action = {
"type": "ir.actions.act_window",
"view_mode": "tree,form",
"res_model": self._name,
}
</field>
</record>
-->
<!-- Top menu item -->
<!--
<menuitem name="my_module" id="my_module.menu_root"/>
-->
<!-- menu categories -->
<!--
<menuitem name="Menu 1" id="my_module.menu_1" parent="my_module.menu_root"/>
<menuitem name="Menu 2" id="my_module.menu_2" parent="my_module.menu_root"/>
-->
<!-- actions -->
<!--
<menuitem name="List" id="my_module.menu_1_list" parent="my_module.menu_1"
action="my_module.action_window"/>
<menuitem name="Server to list" id="my_module" parent="my_module.menu_2"
action="my_module.action_server"/>
-->
</data>
</odoo>
\ No newline at end of file
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!