Browse Source

fix: fix view inheritance and small V9 adapts

12.0-mig-module_prototyper_last
Nicolas JEUDY 9 years ago
committed by Nicolas JEUDY
parent
commit
bc5a31740d
  1. 26
      module_prototyper/README.rst
  2. 10
      module_prototyper/__openerp__.py
  3. 3
      module_prototyper/views/ir_model_fields_view.xml

26
module_prototyper/README.rst

@ -51,7 +51,7 @@ things like default values or onchange methods.
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/149/8.0
:target: https://runbot.odoo-community.org/runbot/149/9.0
Known issues / Roadmap
======================
@ -72,7 +72,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
`here <https://github.com/OCA/server-tools/issues/new?body=module:%20module_prototyper%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`here <https://github.com/OCA/server-tools/issues/new?body=module:%20module_prototyper%0Aversion:%209.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Credits
=======
@ -86,6 +86,7 @@ Contributors
* El hadji Dem <elhadji.dem@savoirfairelinux.com>
* Savoir-faire Linux <support@savoirfairelinux.com>
* Vincent Vinet <vincent.vinet@savoirfairelinux.com>
* Nicolas JEUDY <nicolas@sudokeys.com>
Maintainer
----------
@ -103,22 +104,7 @@ To contribute to this module, please visit http://odoo-community.org.
Changelog
=========
v0.3
----
* Replace ir.ui.model by ir.ui.view in generated xml views
* Improve pep8 compatibility of generation of models
v0.2
----
* Renamed from prototype to module_prototyper as discussed in #108
* Menu in Settings that gather element used to create a prototype (menu views, views, fields)
v0.1
----
v9.0.0.1.0
----------
* The set up of openerp.py is covered, description, maintainer, website, name, technical name...
* Views and menus can be set through odoo and gathered in prototype. The files will be automatically generated and add to the data section of the openerp.py. Be aware some advanced feature as domain or context might still missing.
* Dependencies can be set through the Dependencies tab
* Custom fields can be added. A file by model will be generated with all the fields of the model. The init.py files are updated accordingly. Be aware that some features are not implemented yet, as the domain, the context.
* Initial V9 version from V8.0.3

10
module_prototyper/__openerp__.py

@ -22,16 +22,14 @@
{
'name': 'Module Prototyper',
'version': '8.0.0.3.0',
'author': 'Savoir-faire Linux, Odoo Community Association (OCA)',
'version': '9.0.0.1.0',
'author': 'Savoir-faire Linux, Odoo Community Association (OCA), Sudokeys',
'maintainer': 'Savoir-faire Linux',
'website': 'http://www.savoirfairelinux.com',
'license': 'AGPL-3',
'category': 'Others',
'summary': 'Prototype your module.',
'depends': [
'admin_technical_features',
],
'depends': [],
'external_dependencies': {
'python': [],
},
@ -41,6 +39,6 @@
'views/ir_model_fields_view.xml',
'security/ir.model.access.csv',
],
'installable': False,
'installable': True,
'application': True,
}

3
module_prototyper/views/ir_model_fields_view.xml

@ -39,8 +39,7 @@
<field name="model">ir.model</field>
<field name="inherit_id" ref="base.view_model_form"/>
<field name="arch" type="xml">
<xpath expr="//page/field/form/separator[@string='Groups']"
position="before">
<xpath expr="//field[@name='field_id']/form/notebook" position="before">
<separator string="Notes"/>
<field name="notes"/>
</xpath>

Loading…
Cancel
Save