[tryton-debian-vcs] tryton-modules-product-cost-fifo branch debian-jessie-2.8 updated. debian/2.8.1-1-4-ge7867b8
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Oct 8 16:52:18 UTC 2014
The following commit has been merged in the debian-jessie-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-product-cost-fifo.git;a=commitdiff;h=debian/2.8.1-1-4-ge7867b8
commit e7867b892e2fb6574ca02ccffb3cedec0fd6811b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Oct 8 13:42:01 2014 +0200
Releasing debian version 2.8.2-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index a43030b..045c85e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tryton-modules-product-cost-fifo (2.8.2-1) unstable; urgency=medium
+
+ * Fixing the branch version in the watch file.
+ * Merging upstream version 2.8.2.
+ * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 08 Oct 2014 13:42:01 +0200
+
tryton-modules-product-cost-fifo (2.8.1-1) unstable; urgency=low
* Adapting the rules file to work also with git-buildpackage.
commit d605fc64f1998ab8562b42f5923bc74ac2df8e05
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Oct 8 13:41:58 2014 +0200
Updating copyright file.
diff --git a/debian/copyright b/debian/copyright
index 115c003..5cf07ee 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,9 +1,9 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files: *
-Copyright: 2008-2013 Cédric Krier
+Copyright: 2008-2014 Cédric Krier
2008-2013 Bertrand Chenal
- 2008-2013 B2CK SPRL
+ 2008-2014 B2CK SPRL
License: GPL-3+
Files: debian/*
commit 3334b5f06bb4cfb5ec4820ecc6a66135d9426797
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Oct 8 13:41:58 2014 +0200
Merging upstream version 2.8.2.
diff --git a/CHANGELOG b/CHANGELOG
index 88e6cbd..39b60ca 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.8.2 - 2014-09-29
+* Bug fixes (see mercurial logs for details)
+
Version 2.8.1 - 2013-07-22
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index 9192c97..5134c09 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2013 Cédric Krier.
+Copyright (C) 2008-2014 Cédric Krier.
Copyright (C) 2008-2013 Bertrand Chenal.
-Copyright (C) 2008-2013 B2CK SPRL.
+Copyright (C) 2008-2014 B2CK SPRL.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index 7e67039..1b033c0 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_product_cost_fifo
-Version: 2.8.1
+Version: 2.8.2
Summary: Tryton module to add FIFO cost method
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/move.py b/move.py
index 3989323..d2c2160 100644
--- a/move.py
+++ b/move.py
@@ -109,24 +109,7 @@ class Move:
@ModelView.button
@Workflow.transition('cancel')
def cancel(cls, moves):
- pool = Pool()
- Date = pool.get('ir.date')
-
- today = Date.today()
- for move in moves:
- move.effective_date = today
- if (move.from_location.type in ('supplier', 'production')
- and move.to_location.type == 'storage'
- and move.product.cost_price_method == 'fifo'):
- move._update_product_cost_price('out')
- elif (move.to_location.type == 'supplier'
- and move.from_location.type == 'storage'
- and move.product.cost_price_method == 'fifo'):
- move._update_product_cost_price('in')
- move.effective_date = None
- move.save()
-
- super(Move, cls).cancel(moves)
+ pass
@classmethod
def delete(cls, moves):
diff --git a/tryton.cfg b/tryton.cfg
index 103cc62..6b21e78 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=2.8.1
+version=2.8.2
depends:
ir
product
diff --git a/trytond_product_cost_fifo.egg-info/PKG-INFO b/trytond_product_cost_fifo.egg-info/PKG-INFO
index ff57685..84a8bf5 100644
--- a/trytond_product_cost_fifo.egg-info/PKG-INFO
+++ b/trytond_product_cost_fifo.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-product-cost-fifo
-Version: 2.8.1
+Version: 2.8.2
Summary: Tryton module to add FIFO cost method
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_product_cost_fifo.egg-info/SOURCES.txt b/trytond_product_cost_fifo.egg-info/SOURCES.txt
index e4d3d79..f77c212 100644
--- a/trytond_product_cost_fifo.egg-info/SOURCES.txt
+++ b/trytond_product_cost_fifo.egg-info/SOURCES.txt
@@ -9,6 +9,17 @@ tryton.cfg
./__init__.py
./move.py
./product.py
+./tryton.cfg
+./locale/bg_BG.po
+./locale/ca_ES.po
+./locale/cs_CZ.po
+./locale/de_DE.po
+./locale/es_AR.po
+./locale/es_CO.po
+./locale/es_ES.po
+./locale/fr_FR.po
+./locale/nl_NL.po
+./locale/ru_RU.po
doc/index.rst
locale/bg_BG.po
locale/ca_ES.po
--
tryton-modules-product-cost-fifo
More information about the tryton-debian-vcs
mailing list