26 lines
		
	
	
		
			720 B
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			720 B
		
	
	
	
		
			XML
		
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
 | 
						|
<!--
 | 
						|
  Copyright 2016 Akretion (http://www.akretion.com/)
 | 
						|
  License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 | 
						|
-->
 | 
						|
 | 
						|
<odoo>
 | 
						|
 | 
						|
 | 
						|
<record id="view_move_line_form" model="ir.ui.view">
 | 
						|
    <field name="name">account_payment_partner.move_line_form</field>
 | 
						|
    <field name="model">account.move.line</field>
 | 
						|
    <field name="inherit_id" ref="account.view_move_line_form" />
 | 
						|
    <field name="arch" type="xml">
 | 
						|
        <group groups="analytic.group_analytic_accounting" position="after">
 | 
						|
            <group name="payments" string="Payments">
 | 
						|
                <field name="payment_mode_id" widget="selection"/>
 | 
						|
            </group>
 | 
						|
        </group>
 | 
						|
    </field>
 | 
						|
</record>
 | 
						|
 | 
						|
 | 
						|
</odoo>
 |