From 26f9878ab8aaa21bec38b89c4c85d6e9071e938a Mon Sep 17 00:00:00 2001 From: Brenden Eshbach Date: Thu, 27 Jul 2023 15:09:33 -0500 Subject: [PATCH] first commit --- __init__.py | 4 +++ __manifest__.py | 35 +++++++++++++++++++++ controllers/__init__.py | 3 ++ controllers/controllers.py | 21 +++++++++++++ demo/demo.xml | 30 ++++++++++++++++++ models/__init__.py | 3 ++ models/models.py | 18 +++++++++++ security/ir.model.access.csv | 2 ++ views/templates.xml | 24 +++++++++++++++ views/views.xml | 60 ++++++++++++++++++++++++++++++++++++ 10 files changed, 200 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 controllers/__init__.py create mode 100644 controllers/controllers.py create mode 100644 demo/demo.xml create mode 100644 models/__init__.py create mode 100644 models/models.py create mode 100644 security/ir.model.access.csv create mode 100644 views/templates.xml create mode 100644 views/views.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..511a0ca --- /dev/null +++ b/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import controllers +from . import models \ No newline at end of file diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..e77f862 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +{ + 'name': "template", + + 'summary': """ + Short (1 phrase/line) summary of the module's purpose, used as + subtitle on modules listing or apps.openerp.com""", + + 'description': """ + Long description of module's purpose + """, + + 'author': "My Company", + 'website': "https://www.yourcompany.com", + + # Categories can be used to filter modules in modules listing + # Check https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml + # for the full list + 'category': 'Uncategorized', + 'version': '0.1', + + # any module necessary for this one to work correctly + 'depends': ['base'], + + # always loaded + 'data': [ + # 'security/ir.model.access.csv', + 'views/views.xml', + 'views/templates.xml', + ], + # only loaded in demonstration mode + 'demo': [ + 'demo/demo.xml', + ], +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..457bae2 --- /dev/null +++ b/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import controllers \ No newline at end of file diff --git a/controllers/controllers.py b/controllers/controllers.py new file mode 100644 index 0000000..96e341c --- /dev/null +++ b/controllers/controllers.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# from odoo import http + + +# class Template(http.Controller): +# @http.route('/template/template', auth='public') +# def index(self, **kw): +# return "Hello, world" + +# @http.route('/template/template/objects', auth='public') +# def list(self, **kw): +# return http.request.render('template.listing', { +# 'root': '/template/template', +# 'objects': http.request.env['template.template'].search([]), +# }) + +# @http.route('/template/template/objects/', auth='public') +# def object(self, obj, **kw): +# return http.request.render('template.object', { +# 'object': obj +# }) diff --git a/demo/demo.xml b/demo/demo.xml new file mode 100644 index 0000000..6c4e949 --- /dev/null +++ b/demo/demo.xml @@ -0,0 +1,30 @@ + + + + + \ No newline at end of file diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..5305644 --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models \ No newline at end of file diff --git a/models/models.py b/models/models.py new file mode 100644 index 0000000..8fd26fb --- /dev/null +++ b/models/models.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +# from odoo import models, fields, api + + +# class template(models.Model): +# _name = 'template.template' +# _description = 'template.template' + +# name = fields.Char() +# value = fields.Integer() +# value2 = fields.Float(compute="_value_pc", store=True) +# description = fields.Text() +# +# @api.depends('value') +# def _value_pc(self): +# for record in self: +# record.value2 = float(record.value) / 100 diff --git a/security/ir.model.access.csv b/security/ir.model.access.csv new file mode 100644 index 0000000..c6fa58f --- /dev/null +++ b/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_template_template,template.template,model_template_template,base.group_user,1,1,1,1 \ No newline at end of file diff --git a/views/templates.xml b/views/templates.xml new file mode 100644 index 0000000..cea6b39 --- /dev/null +++ b/views/templates.xml @@ -0,0 +1,24 @@ + + + + + \ No newline at end of file diff --git a/views/views.xml b/views/views.xml new file mode 100644 index 0000000..4801d75 --- /dev/null +++ b/views/views.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file