Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module is named aikido (name of martial art)
- aikidoka is person that is doing that and inherits from party
- in /usr/local/lib/python2.6/dist-packages/trytond_aikido/trytond/modules/aikido I have:
- ::::::::::::::
- aikidoka.py
- ::::::::::::::
- # -*- coding: utf-8 -*-
- from trytond.model import ModelView, ModelSQL, fields
- class Aikidoka(ModelSQL, ModelView):
- 'Aikidoka'
- _name = 'party.party'
- _description = __doc__
- dateofbirth = fields.Char('Date of Birth')
- Aikidoka()
- ::::::::::::::
- __init__.py
- ::::::::::::::
- # -*- coding: utf-8 -*-
- from party import *
- from aikido import *
- ::::::::::::::
- __tryton__.py
- ::::::::::::::
- # -*- coding: utf-8 -*-
- {
- 'name' : 'Aikidoka',
- 'version' : '0.0.1',
- 'author' : 'Pander',
- 'email' : '[email protected]',
- 'description': 'Derived from Party with customisation for aikido',
- 'depends' : [
- 'ir',
- 'party',
- ],
- 'xml' : [
- 'aikidoka.xml',
- ],
- 'translation' : [
- ],
- }
- Is this correct so far?
- How do I set up aikidoka.xml to only add a label and field to party.xml?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement