← Back to team overview

clearcorp team mailing list archive

[Merge] lp:~rr.clearcorp/openerp-ccorp-addons/6.1-stock_extended into lp:openerp-ccorp-addons

 

Ronald Rubi has proposed merging lp:~rr.clearcorp/openerp-ccorp-addons/6.1-stock_extended into lp:openerp-ccorp-addons.

Requested reviews:
  CLEARCORP drivers (clearcorp-drivers)

For more details, see:
https://code.launchpad.net/~rr.clearcorp/openerp-ccorp-addons/6.1-stock_extended/+merge/142704

Add module stock_extended
-- 
https://code.launchpad.net/~rr.clearcorp/openerp-ccorp-addons/6.1-stock_extended/+merge/142704
Your team CLEARCORP development team is subscribed to branch lp:openerp-ccorp-addons.
=== added directory 'stock_extended'
=== added file 'stock_extended/__init__.py'
--- stock_extended/__init__.py	1970-01-01 00:00:00 +0000
+++ stock_extended/__init__.py	2013-01-10 14:59:36 +0000
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Addons modules by CLEARCORP S.A.
+#    Copyright (C) 2009-TODAY CLEARCORP S.A. (<http://clearcorp.co.cr>).
+#
+#    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/>.
+#
+##############################################################################
+

=== added file 'stock_extended/__openerp__.py'
--- stock_extended/__openerp__.py	1970-01-01 00:00:00 +0000
+++ stock_extended/__openerp__.py	2013-01-10 14:59:36 +0000
@@ -0,0 +1,38 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Addons modules by CLEARCORP S.A.
+#    Copyright (C) 2009-TODAY CLEARCORP S.A. (<http://clearcorp.co.cr>).
+#
+#    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/>.
+#
+##############################################################################
+
+{
+    'name': 'Stock extended',
+    'version': '1.0',
+    'author': 'ClearCorp S.A.',
+    'website': 'http://clearcorp.co.cr',
+    'category': 'Warehouse Management',
+    'description': """Add date_done in stock.picking.out.form
+    """,
+    'depends': ['stock'],
+    'init_xml': [],
+    'demo_xml': [],
+    'update_xml': ['stock_extended_view.xml'],
+    'license': 'AGPL-3',
+    'installable': True,
+    'active': False,
+}

=== added file 'stock_extended/stock_extended_view.xml'
--- stock_extended/stock_extended_view.xml	1970-01-01 00:00:00 +0000
+++ stock_extended/stock_extended_view.xml	2013-01-10 14:59:36 +0000
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+    <data>
+        
+        <record id="extended_view_picking_in_form" model="ir.ui.view">
+            <field name="name">extended.view.picking.in.form</field>
+            <field name="model">stock.picking</field>
+            <field name="inherit_id" ref="stock.view_picking_in_form"/>
+            <field name="type">form</field>
+            <field name="arch" type="xml">
+                <field name="min_date" position="after">
+                    <field name="date_done" groups="base.group_extended"/>
+                </field>
+            </field>
+        </record>
+        
+    </data>
+</openerp>


Follow ups