51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| 
 | |
| <!--
 | |
| ##############################################################################
 | |
| #
 | |
| #    OpenERP, Open Source Management Solution
 | |
| #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
 | |
| #
 | |
| #    cam_invoice_skonto, Custom Module for OpenERP
 | |
| #    Copyright (C) 2014 Camadeus Consulting GmbH (<http://www.camadeus.at>).
 | |
| #
 | |
| #    This program is free software: you can redistribute it and/or modify
 | |
| #    it under the terms of the GNU Affero General Public License as
 | |
| #    published by the Free Software Foundation, either version 3 of the
 | |
| #    License, or (at your option) any later version.
 | |
| #
 | |
| #    This program is distributed in the hope that it will be useful,
 | |
| #    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| #    GNU Affero General Public License for more details.
 | |
| #
 | |
| #    You should have received a copy of the GNU Affero General Public License
 | |
| #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
| #
 | |
| ##############################################################################
 | |
| -->
 | |
| 
 | |
| <openerp>
 | |
| 	<data>
 | |
|         <record id="account.act_open" model="workflow.activity">
 | |
|             <field name="action">action_date_assign()
 | |
| action_move_create()
 | |
| action_number()
 | |
| invoice_validate()
 | |
| action_skonto_faelligkeit_assign()</field>
 | |
|         </record>		
 | |
| 	</data>
 | |
| 
 | |
|     <data noupdate="1">
 | |
| 
 | |
|         <record id="account_account_skonto" model="account.account">
 | |
|             <field name="name">Skonto</field>
 | |
|             <field name="code">99999999</field>
 | |
|             <field name="type">other</field>
 | |
|             <field name="user_type" search="[('code','=','other')]"/>
 | |
|         </record>
 | |
| 
 | |
|     </data>
 | |
| 
 | |
| </openerp>
 |