41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <!-- Copyright 2018-Today datenpol gmbh(<http://www.datenpol.at>)
 | |
|      License OPL-1 or later (https://www.odoo.com/documentation/user/11.0/legal/licenses/licenses.html#licenses). -->
 | |
| 
 | |
| <odoo>
 | |
| 
 | |
|     <record id="view_wizard_tz_ic_form" model="ir.ui.view">
 | |
|         <field name="name">view_wizard_tz_ic_form</field>
 | |
|         <field name="model">wizard.tz.ic</field>
 | |
|         <field name="arch" type="xml">
 | |
|             <form string="Wizard Import TZBox">
 | |
|                 <group>
 | |
|                     <p>Wollen Sie für diese Rechnungen eine IC-Rechnung erstellen?</p>
 | |
|                 </group>
 | |
|                 <group>
 | |
|                     <field name="new_pg_ic_num" string="IC-Nummer"/>
 | |
|                 </group>
 | |
|                 <footer>
 | |
|                     <button name="button_tz_ic"
 | |
|                             string="IC-Rechnung vorbereiten"
 | |
|                             class="btn-primary"
 | |
|                             type="object"/>
 | |
|                     <button string="Abbrechen"
 | |
|                             class="btn-default"
 | |
|                             special="cancel"/>
 | |
|                 </footer>
 | |
|             </form>
 | |
|         </field>
 | |
|     </record>
 | |
| 
 | |
|     <act_window id="action_wizard_tz_ic"
 | |
|         name="IC-Rechnung vorbereiten"
 | |
|         src_model="account.invoice"
 | |
|         res_model="wizard.tz.ic"
 | |
|         view_type="form"
 | |
|         view_mode="form"
 | |
|         key2="client_action_multi"
 | |
|         target="new"/>
 | |
| 
 | |
| </odoo>
 |