Skip to content

Commit

Permalink
Set Alpha development status
Browse files Browse the repository at this point in the history
* Add copyright header
* Add myself as contributor of stock_location_zone
* Fix lint
  • Loading branch information
guewen committed Aug 28, 2019
1 parent 508519a commit a6998d6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions stock_location_zone/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@
'security/ir.model.access.csv',
],
'installable': True,
'development_status': 'Alpha',
'license': 'AGPL-3',
}
6 changes: 3 additions & 3 deletions stock_location_zone/models/stock_location.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Copyright 2017 Sylvain Van Hoof <svh@sylvainvh.be>
# Copyright 2018-2019 Jacques-Etienne Baudoux (BCIM sprl) <je@bcim.be>
# Copyright 2019 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from psycopg2 import sql

from odoo import _, api, exceptions, fields, models, SUPERUSER_ID
from odoo import _, api, fields, models, SUPERUSER_ID
from odoo.tools.sql import index_exists, _schema


Expand Down Expand Up @@ -37,8 +38,7 @@ class StockLocation(models.Model):
kind = fields.Selection([
('zone', 'Picking Zone'),
('area', 'Area'),
('bin', 'Bin'),
],
('bin', 'Bin')],
string='Kind')

picking_zone_id = fields.Many2one(
Expand Down
1 change: 1 addition & 0 deletions stock_location_zone/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
* Syvain Van Hoof (Okia sprl) <sylvainvh@okia.be>
* Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
* Guewen Baconnier (Camptocamp) <guewen.baconnier@camptocamp.com>

0 comments on commit a6998d6

Please sign in to comment.