How Can i run a python code from this button ... the button is defined in BASE.XML and run a CSS code (display None) ...
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
You override the unlink() method for the underlying model.
If the user add a sale order line and after some discussion with the customer the line will be deleted, (the line added not yet saved in the database) there is a python code behind this action ? The unlink method is run when the line is saved in the database :(
how can I list items that way without have to click on add item? I have two classes to build two tables:
class tabela_recintos(osv.osv):
_name = 'tabela.recintos'
_columns = {
'recinto_ids': fields.one2many('tabela.lista','id_wizard','teste')
}
tabela_recintos()
class tabela_lista(osv.osv):
_name = 'tabela.lista'
_columns = {
'id_wizard':fields.many2one('tabela.recintos','id_wizard'),
'cod': fields.char('Código', size=20, required='True'),
'nome': fields.char('Designação', size=60, required='True')
}
I click on a menu on the left and pop's up a wizard, this wizard ll list the items, but I dont know what can I do more. it only shows a field and the button add item...
my xml is this
<record id="carrega_form" model="ir.ui.view">
<field name="name">carrega.form</field>
<field name="model">tabela.recintos</field>
<field name="arch" type="xml">
<form string="carrega" version="7.0">
<group string="carrrega" col="1">
<field name="recinto_ids"/>
</group>
<footer>
<button name='name' type='object' string='Criar novo Recinto' class="oe_highlight"/>
ou
<button string="Cancelar" class="oe_link" special="cancel"/>
</footer>
</form>
</field>
</record>
<record id="gs_carrega_act" model="ir.actions.act_window">
<field name="name">Carregar os Recintos</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">tabela.recintos</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
<menuitem
name="Carrega Recinto teste"
parent="gs_menuLotacoes"
action="gs_carrega_act"
id="gs_carrega"
sequence="0"/>
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
Aanmelden| Gerelateerde posts | Antwoorden | Weergaven | Activiteit | |
|---|---|---|---|---|
|
|
2
dec. 23
|
14301 | ||
|
|
3
jul. 22
|
24718 | ||
|
|
2
jun. 21
|
19756 | ||
|
|
0
sep. 20
|
4593 | ||
|
|
0
mei 16
|
5222 |