Browse Source

Fix parent menu and make module installable

pull/344/head
Jose Maria Alzaga 8 years ago
parent
commit
d08295eb47
  1. 1
      base_location/README.rst
  2. 7
      base_location/__manifest__.py
  3. 2
      base_location/views/better_zip_view.xml

1
base_location/README.rst

@ -42,6 +42,7 @@ Contributors
* Alejandro Santana <alejandrosantana@anubia.es> * Alejandro Santana <alejandrosantana@anubia.es>
* Sandy Carter <sandy.carter@savoirfairelinux.com> * Sandy Carter <sandy.carter@savoirfairelinux.com>
* Yannick Vaucher <yannick.vaucher@camptocamp.com> * Yannick Vaucher <yannick.vaucher@camptocamp.com>
* Jose Maria Alzaga <jose.alzaga@aselcis.com>
Icon Icon
---- ----

7
base_location/__manifest__.py

@ -5,6 +5,7 @@
# Contributor: Pedro Manuel Baeza <pedro.baeza@serviciosbaeza.com> # Contributor: Pedro Manuel Baeza <pedro.baeza@serviciosbaeza.com>
# Ignacio Ibeas <ignacio@acysos.com> # Ignacio Ibeas <ignacio@acysos.com>
# Alejandro Santana <alejandrosantana@anubia.es> # Alejandro Santana <alejandrosantana@anubia.es>
# Jose Maria Alzaga <jose.alzaga@aselcis.com>
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as
@ -22,12 +23,13 @@
############################################################################## ##############################################################################
{ {
'name': 'Location management (aka Better ZIP)', 'name': 'Location management (aka Better ZIP)',
'version': '9.0.1.0.0',
'version': '10.0.1.0.1',
'depends': ['base'], 'depends': ['base'],
'author': "Camptocamp," 'author': "Camptocamp,"
"ACYSOS S.L.," "ACYSOS S.L.,"
"Alejandro Santana," "Alejandro Santana,"
"Serv. Tecnol. Avanzados - Pedro M. Baeza," "Serv. Tecnol. Avanzados - Pedro M. Baeza,"
"Aselcis Consulting,"
"Odoo Community Association (OCA)", "Odoo Community Association (OCA)",
'license': "AGPL-3", 'license': "AGPL-3",
'contributors': [ 'contributors': [
@ -37,6 +39,7 @@
'Alejandro Santana <alejandrosantana@anubia.es>', 'Alejandro Santana <alejandrosantana@anubia.es>',
'Sandy Carter <sandy.carter@savoirfairelinux.com>', 'Sandy Carter <sandy.carter@savoirfairelinux.com>',
'Yannick Vaucher <yannick.vaucher@camptocamp.com>', 'Yannick Vaucher <yannick.vaucher@camptocamp.com>',
'Jose Maria Alzaga <jose.alzaga@aselcis.com>',
], ],
'summary': '''Enhanced zip/npa management system''', 'summary': '''Enhanced zip/npa management system''',
'website': 'http://www.camptocamp.com', 'website': 'http://www.camptocamp.com',
@ -49,6 +52,6 @@
'demo': [ 'demo': [
'demo/better_zip.xml', 'demo/better_zip.xml',
], ],
'installable': False,
'installable': True,
'auto_install': False, 'auto_install': False,
} }

2
base_location/views/better_zip_view.xml

@ -62,7 +62,7 @@
<menuitem <menuitem
name="Cities/Locations Management" name="Cities/Locations Management"
id="zip_base" id="zip_base"
parent="base.menu_localisation"
parent="sales_team.menu_localisation"
action="action_zip_tree" action="action_zip_tree"
/> />

Loading…
Cancel
Save