Skip to content

Commit

Permalink
* Add tracking locations menu
Browse files Browse the repository at this point in the history
* Switch to LGPL
  • Loading branch information
lasley committed May 5, 2017
1 parent 7d9f2c9 commit 1322149
Show file tree
Hide file tree
Showing 19 changed files with 44 additions and 26 deletions.
6 changes: 3 additions & 3 deletions stock_picking_tracking/README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3

======================
Stock Picking Tracking
Expand Down
2 changes: 1 addition & 1 deletion stock_picking_tracking/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from . import models
15 changes: 8 additions & 7 deletions stock_picking_tracking/__openerp__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# Copyright 2016-2017 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

{
"name": "Stock Picking Tracking",
Expand All @@ -9,7 +9,7 @@
"category": "Inventory, Logistics, Warehousing",
"website": "https://laslabs.com/",
"author": "LasLabs",
"license": "AGPL-3",
"license": "LGPL-3",
"application": False,
"installable": True,
"depends": [
Expand All @@ -19,10 +19,11 @@
"security/ir.model.access.csv",
"views/stock_picking_view.xml",
"views/stock_picking_tracking_group_view.xml",
'views/stock_picking_tracking_event_view.xml',
'views/stock_picking_tracking_location_view.xml',
"views/stock_picking_tracking_event_view.xml",
"views/stock_picking_tracking_location_view.xml",
"views/stock_menu.xml",
],
'demo': [
'demo/stock_tracking_demo.xml',
"demo": [
"demo/stock_tracking_demo.xml",
]
}
2 changes: 1 addition & 1 deletion stock_picking_tracking/demo/stock_tracking_demo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--
Copyright 2016 LasLabs Inc.
@license AGPL-3 or later (http://www.gnu.org/licenses/agpl.html).
@license LGPL-3 or later (http://www.gnu.org/licenses/lgpl.html).
-->

<odoo>
Expand Down
2 changes: 1 addition & 1 deletion stock_picking_tracking/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from . import stock_picking
from . import stock_picking_tracking_event
Expand Down
2 changes: 1 addition & 1 deletion stock_picking_tracking/models/stock_picking.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from openerp import models, fields

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from openerp import models, fields, api

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from openerp import models, fields, api

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from openerp import models, fields, api

Expand Down
2 changes: 1 addition & 1 deletion stock_picking_tracking/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from . import test_stock_picking_tracking_event
from . import test_stock_picking_tracking_group
Expand Down
2 changes: 1 addition & 1 deletion stock_picking_tracking/tests/common.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from openerp.tests.common import TransactionCase

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from .common import TestHelper

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

import mock

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

from .common import TestHelper

Expand Down
17 changes: 17 additions & 0 deletions stock_picking_tracking/views/stock_menu.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>

<!--
Copyright 2017 LasLabs Inc.
@license LGPL-3 or later (http://www.gnu.org/licenses/lgpl.html).
-->

<odoo>

<menuitem id="stock_picking_tracking_location_menu"
name="Tracking Locations"
parent="stock.menu_stock_config_settings"
action="stock_picking_tracking_location_action"
sequence="50"
/>

</odoo>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--
Copyright 2016 LasLabs Inc.
@license AGPL-3 or later (http://www.gnu.org/licenses/agpl.html).
@license LGPL-3 or later (http://www.gnu.org/licenses/lgpl.html).
-->

<odoo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--
Copyright 2016 LasLabs Inc.
@license AGPL-3 or later (http://www.gnu.org/licenses/agpl.html).
@license LGPL-3 or later (http://www.gnu.org/licenses/lgpl.html).
-->

<odoo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--
Copyright 2016 LasLabs Inc.
@license AGPL-3 or later (http://www.gnu.org/licenses/agpl.html).
@license LGPL-3 or later (http://www.gnu.org/licenses/lgpl.html).
-->

<odoo>
Expand Down
2 changes: 1 addition & 1 deletion stock_picking_tracking/views/stock_picking_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--
Copyright 2016 LasLabs Inc.
@license AGPL-3 or later (http://www.gnu.org/licenses/agpl.html).
@license LGPL-3 or later (http://www.gnu.org/licenses/lgpl.html).
-->

<odoo>
Expand Down

0 comments on commit 1322149

Please sign in to comment.