33 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.3 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="wizard_confirm_print_invoice_form_view" model="ir.ui.view">
 | |
|         <field name="name">wizard_confirm_print_invoice_form_view</field>
 | |
|         <field name="model">wizard.confirm_print_invoice</field>
 | |
|         <field name="arch" type="xml">
 | |
|             <form string="Bestätige Rechnungsdruck">
 | |
|                 <group>
 | |
|                     <field name="info"/>
 | |
|                 </group>
 | |
|                 <footer>
 | |
|                     <button name="print_invoice" string="Rechnung trotzdem drucken" class="btn-primary" type="object"/>
 | |
|                     <button string="Abbrechen" class="btn-default" special="cancel"/>
 | |
|                 </footer>
 | |
|             </form>
 | |
|         </field>
 | |
|     </record>
 | |
| 
 | |
|     <record id="action_wizard_confirm_print_invoice" model="ir.actions.act_window">
 | |
|         <field name="name">Bestätige Rechnungsdruck</field>
 | |
|         <field name="type">ir.actions.act_window</field>
 | |
|         <field name="res_model">wizard.confirm_print_invoice</field>
 | |
|         <field name="target">new</field>
 | |
|         <field name="view_type">form</field>
 | |
|         <field name="view_mode">form</field>
 | |
|     </record>
 | |
| 
 | |
| </odoo>
 |