ソースを参照

commit inicial

Rodney Enciso Arias 8 年 前
コミット
8dadf49c5a
8 ファイル変更116 行追加0 行削除
  1. 2 0
      README
  2. 23 0
      __init__.py
  3. BIN
      __init__.pyc
  4. 54 0
      __openerp__.py
  5. 21 0
      i18n/fr.po
  6. BIN
      images/asperience.png
  7. BIN
      images/sale_pickings.png
  8. 16 0
      sale_view.xml

+ 2 - 0
README

@@ -0,0 +1,2 @@
+This module is "production grade". 
+In case of problems, please contact maintenance_asperpgi@asperience.fr

+ 23 - 0
__init__.py

@@ -0,0 +1,23 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2007-TODAY ASPerience SARL (<http://www.asperience.fr>).
+#    All Rights Reserved
+#
+#    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/>.
+#
+##############################################################################
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

BIN
__init__.pyc


+ 54 - 0
__openerp__.py

@@ -0,0 +1,54 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2007-TODAY ASPerience SARL (<http://www.asperience.fr>).
+#    All Rights Reserved
+#
+#    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": "ASPerience Sale Picking History",
+	"version": "8.0",
+	"author": "ASPerience",
+	"website": "http://www.asperience.fr",
+	"sequence": 0,
+	"certificate": "",
+	"license": "",
+	"depends": [
+		"sale_stock"
+	],
+	"category": "Sales Management",
+	"complexity": "easy",
+	"description": """
+Adds view panel for displaying pickings dependent of sale
+	""",
+	"data": [
+		"sale_view.xml",
+	],
+	"demo": [
+	],
+	"test": [
+	],
+	"images": [
+		"images/asperience.png",
+		"images/sale_packings.png",
+	],
+	"auto_install": False,
+	"installable": True,
+	"application": False,
+
+}
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

+ 21 - 0
i18n/fr.po

@@ -0,0 +1,21 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+#	* asperience_sale_picking_history
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2014-12-15 11:47+0000\n"
+"PO-Revision-Date: 2014-12-15 11:47+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: asperience_sale_history
+#: view:sale.order:asperience_sale_picking_history.view_order_form_picking_history
+msgid "Packings"
+msgstr "Livraisons"

BIN
images/asperience.png


BIN
images/sale_pickings.png


+ 16 - 0
sale_view.xml

@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+    <data>
+        <record id="view_order_form_picking_history" model="ir.ui.view">
+            <field name="name">sale.order.form.picking.history</field>
+            <field name="model">sale.order</field>
+            <field name="inherit_id" ref="asperience_sale_history.view_order_form_history"/>
+            <field name="arch" type="xml">
+				<field name="invoice_ids" position="after">
+	                <separator colspan="4" string="Transferencia"/>
+	                <field colspan="4" name="picking_ids" nolabel="1"/>
+				</field>
+            </field>
+        </record>
+    </data>
+</openerp>