Browse Source

first commit

deisy 6 years ago
commit
fa20c55cce
3 changed files with 29 additions and 0 deletions
  1. 0 0
      __init__.py
  2. 18 0
      __openerp__.py
  3. 11 0
      menu_tpv.xml

+ 0 - 0
__init__.py


+ 18 - 0
__openerp__.py

@@ -0,0 +1,18 @@
+# -*- encoding: utf-8 -*-
+
+{
+    'name': 'Menu for TPV',
+    'version': '8.0.0.1.0',
+    'category': 'crm',
+    'summary': 'Extend eiru_base_menu for Odoo TPV',
+    'author': 'Eiru',
+    'license': 'AGPL-3',
+    'depends': [
+        'eiru_base_menu',
+        'point_of_sale'
+        ],
+    'data': [
+        'menu_project.xml',
+    ],
+    'installable': True,
+}

+ 11 - 0
menu_tpv.xml

@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+  <data>
+
+    <menuitem name="TPV"
+          id="point_of_sale.menu_point_root"
+          parent="eiru_base_menu.menu_operations"
+          sequence="1"/>
+
+  </data>
+</openerp>