Merge lp:~vauxoo/addons-vauxoo/addons-vauxoo-61-stock_view_product into lp:addons-vauxoo/6.1

Proposed by Juan Carlos Hernandez
Status: Merged
Merged at revision: 545
Proposed branch: lp:~vauxoo/addons-vauxoo/addons-vauxoo-61-stock_view_product
Merge into: lp:addons-vauxoo/6.1
Diff against target: 100 lines (+85/-0)
3 files modified
stock_view_product/__init__.py (+23/-0)
stock_view_product/__openerp__.py (+41/-0)
stock_view_product/stock_product.xml (+21/-0)
To merge this branch: bzr merge lp:~vauxoo/addons-vauxoo/addons-vauxoo-61-stock_view_product
Reviewer Review Type Date Requested Status
Isaac López Zúñiga Pending
Rodolfo Lopez Pending
Moisés López - http://www.vauxoo.com Pending
Review via email: mp+131286@code.launchpad.net

Description of the change

add module stock_view_product

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'stock_view_product'
2=== added file 'stock_view_product/__init__.py'
3--- stock_view_product/__init__.py 1970-01-01 00:00:00 +0000
4+++ stock_view_product/__init__.py 2012-10-24 22:05:22 +0000
5@@ -0,0 +1,23 @@
6+#!/usr/bin/python
7+# -*- encoding: utf-8 -*-
8+###########################################################################
9+# Module Writen to OpenERP, Open Source Management Solution
10+# Copyright (C) Vauxoo (<http://vauxoo.com>).
11+# All Rights Reserved
12+###############Credits######################################################
13+# Coded by: Juan Carlos Funes(juan@vauxoo.com)
14+#############################################################################
15+# This program is free software: you can redistribute it and/or modify
16+# it under the terms of the GNU Affero General Public License as published by
17+# the Free Software Foundation, either version 3 of the License, or
18+# (at your option) any later version.
19+#
20+# This program is distributed in the hope that it will be useful,
21+# but WITHOUT ANY WARRANTY; without even the implied warranty of
22+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23+# GNU Affero General Public License for more details.
24+#
25+# You should have received a copy of the GNU Affero General Public License
26+# along with this program. If not, see <http://www.gnu.org/licenses/>.
27+################################################################################
28+import kardex
29
30=== added file 'stock_view_product/__openerp__.py'
31--- stock_view_product/__openerp__.py 1970-01-01 00:00:00 +0000
32+++ stock_view_product/__openerp__.py 2012-10-24 22:05:22 +0000
33@@ -0,0 +1,41 @@
34+#!/usr/bin/python
35+# -*- encoding: utf-8 -*-
36+###########################################################################
37+# Module Writen to OpenERP, Open Source Management Solution
38+# Copyright (C) Vauxoo (<http://vauxoo.com>).
39+# All Rights Reserved
40+###############Credits######################################################
41+# Coded by: Juan Carlos Funes(juan@vauxoo.com)
42+#############################################################################
43+# This program is free software: you can redistribute it and/or modify
44+# it under the terms of the GNU Affero General Public License as published by
45+# the Free Software Foundation, either version 3 of the License, or
46+# (at your option) any later version.
47+#
48+# This program is distributed in the hope that it will be useful,
49+# but WITHOUT ANY WARRANTY; without even the implied warranty of
50+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
51+# GNU Affero General Public License for more details.
52+#
53+# You should have received a copy of the GNU Affero General Public License
54+# along with this program. If not, see <http://www.gnu.org/licenses/>.
55+################################################################################
56+{
57+ "name" : "Add locaton_id,location_dest_id,date_expected,state in stocks moves",
58+ "version" : "1.0",
59+ "depends" : ['stock'],
60+ "author" : "Vauxoo",
61+ #"license" : "AGPL-3",
62+ "description" : """This module add locaton_id,location_dest_id,date_expected,state in stocks moves
63+ """,
64+ "website" : "http://vauxoo.com",
65+ "category" : "Generic Modules",
66+ "init_xml" : [],
67+ "demo_xml" : [],
68+ "test": [],
69+ "update_xml" : ['stock_product.xml',
70+ ],
71+ "active": False,
72+ "installable": True,
73+}
74+
75
76=== added file 'stock_view_product/stock_product.xml'
77--- stock_view_product/stock_product.xml 1970-01-01 00:00:00 +0000
78+++ stock_view_product/stock_product.xml 2012-10-24 22:05:22 +0000
79@@ -0,0 +1,21 @@
80+<?xml version="1.0" encoding="utf-8"?>
81+<openerp>
82+ <data>
83+
84+ <record id="view_stock_move_tree_inherit" model="ir.ui.view">
85+ <field name="name">view.stock.move.tree.inherit</field>
86+ <field name="model">stock.move</field>
87+ <field name="type">tree</field>
88+ <field name="inherit_id" ref="stock.view_move_tree_reception_picking_board"/>
89+ <field name="arch" type="xml">
90+ <xpath expr="/tree/field[@name='date']" position="after" >
91+ <field name="date_expected"/>
92+ <field name="location_id"/>
93+ <field name="location_dest_id"/>
94+ <field name="state"/>
95+ </xpath>
96+ </field>
97+ </record>
98+
99+ </data>
100+</openerp>