MIG hr_payroll_payment to 12.0. Known issue where you have to change the payment journal to see the methods.

This commit is contained in:
Jared Kipe
2019-05-20 13:56:05 -07:00
parent c18519b32b
commit befb967fb0
3 changed files with 2 additions and 6 deletions

View File

@@ -1,9 +1,7 @@
# -*- coding: utf-8 -*-
{ {
'name': 'Payroll Payments', 'name': 'Payroll Payments',
'author': 'Hibou Corp. <hello@hibou.io>', 'author': 'Hibou Corp. <hello@hibou.io>',
'version': '11.0.0.0.0', 'version': '12.0.1.0.0',
'category': 'Human Resources', 'category': 'Human Resources',
'sequence': 95, 'sequence': 95,
'summary': 'Register payments for Payroll Payslips', 'summary': 'Register payments for Payroll Payslips',

View File

@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
from odoo import api, fields, models, _ from odoo import api, fields, models, _
from odoo.exceptions import ValidationError from odoo.exceptions import ValidationError

View File

@@ -10,7 +10,7 @@
<field name="arch" type="xml"> <field name="arch" type="xml">
<data> <data>
<xpath expr="//filter[last()]" position="after"> <xpath expr="//filter[last()]" position="after">
<filter string="Needs Payment" domain="[('is_paid', '=', False)]" help="Needs Payment Slip"/> <filter name="filter_needs_payment" string="Needs Payment" domain="[('is_paid', '=', False)]" help="Needs Payment Slip"/>
</xpath> </xpath>
</data> </data>
</field> </field>