Port module stock_my_operations_filter to v10

This commit is contained in:
Alexis de Lattre
2018-01-18 18:08:54 +01:00
parent b9014e937d
commit 9a8d9616b7
4 changed files with 24 additions and 62 deletions

View File

@@ -1,29 +1,11 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Stock My Operations Filter module for Odoo
# Copyright (C) 2015 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
#
# 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/>.
#
##############################################################################
# © 2015-2018 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
{
'name': 'Stock My Operations Filter',
'version': '8.0.0.1.0',
'version': '10.0.0.1.0',
'category': 'Inventory, Logistic, Storage',
'license': 'AGPL-3',
'summary': "Adds a filter 'My Operations'",
@@ -40,5 +22,5 @@ This module has been written by Alexis de Lattre from Akretion
'stock_view.xml',
'users_view.xml',
],
'installable': False,
'installable': True,
}

View File

@@ -1,27 +1,10 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Stock My Operations Filter module for Odoo
# Copyright (C) 2015 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
#
# 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/>.
#
##############################################################################
# © 2015-2018 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp import models, fields
from odoo import models, fields
class ResUsers(models.Model):

View File

@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 Akretion France (www.akretion.com)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
The licence is in the file __openerp__.py
© 2015-2018 Akretion France (www.akretion.com)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-->
<openerp>
<data>
<odoo>
<record id="view_picking_type_form" model="ir.ui.view">
<field name="name">my.operations.stock.picking.type.form</field>
@@ -26,16 +25,16 @@
<field name="model">stock.picking.type</field>
<field name="inherit_id" ref="stock.view_pickingtype_filter"/>
<field name="arch" type="xml">
<field name="warehouse_id" position="after">
<filter name="inactive" position="after">
<separator/>
<filter name="my_operations" string="My Operations"
domain="[('default_user_ids', '=', uid)]" />
</field>
</filter>
</field>
</record>
<record id="stock.action_picking_type_form" model="ir.actions.act_window">
<record id="stock.stock_picking_type_action" model="ir.actions.act_window">
<field name="context">{'search_default_my_operations': True}</field>
</record>
</data>
</openerp>
</odoo>

View File

@@ -1,23 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 Akretion France (www.akretion.com)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
The licence is in the file __openerp__.py
Copyright (C) 2015-2018 Akretion France (www.akretion.com)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-->
<openerp>
<data>
<odoo>
<record id="view_users_form" model="ir.ui.view">
<field name="name">usability.default_warehouse.res.users.form</field>
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_form"/>
<field name="arch" type="xml">
<group string="Menus Customization" position="inside">
<field name="action_id" position="after">
<field name="default_picking_type_ids" widget="many2many_tags"/>
</group>
</field>
</field>
</record>
</data>
</openerp>
</odoo>