[tryton-debian-vcs] tryton-modules-project-invoice branch upstream-3.2 updated. upstream/3.2.3-1-gb8c8213
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Dec 23 16:53:31 UTC 2015
The following commit has been merged in the upstream-3.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-project-invoice.git;a=commitdiff;h=upstream/3.2.3-1-gb8c8213
commit b8c8213704234a21f314dfc5ce6fe35072b93ac3
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 23 15:15:34 2015 +0100
Adding upstream version 3.2.4.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index aab1a9a..1281616 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.2.4 - 2015-12-22
+* Bug fixes (see mercurial logs for details)
+
Version 3.2.3 - 2015-07-13
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index a88241a..ac203f1 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_project_invoice
-Version: 3.2.3
+Version: 3.2.4
Summary: Tryton module to invoice projects
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tests/scenario_project_invoice_timesheet.rst b/tests/scenario_project_invoice_timesheet.rst
index 0163f69..fa1ac49 100644
--- a/tests/scenario_project_invoice_timesheet.rst
+++ b/tests/scenario_project_invoice_timesheet.rst
@@ -212,7 +212,7 @@ Invoice project::
>>> project.hours_to_invoice
0.0
>>> project.invoiced_amount
- Decimal('100.000000000000')
+ Decimal('100.00')
Create more timesheets::
@@ -232,7 +232,7 @@ Check project hours::
>>> project.hours_to_invoice
4.0
>>> project.invoiced_amount
- Decimal('100.000000000000')
+ Decimal('100.00')
Invoice again project::
@@ -244,4 +244,4 @@ Invoice again project::
>>> project.hours_to_invoice
0.0
>>> project.invoiced_amount
- Decimal('180.000000000000')
+ Decimal('180.00')
diff --git a/tryton.cfg b/tryton.cfg
index a531f8e..ebfc6f6 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.2.3
+version=3.2.4
depends:
ir
project
diff --git a/trytond_project_invoice.egg-info/PKG-INFO b/trytond_project_invoice.egg-info/PKG-INFO
index 043e01e..93aa663 100644
--- a/trytond_project_invoice.egg-info/PKG-INFO
+++ b/trytond_project_invoice.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-project-invoice
-Version: 3.2.3
+Version: 3.2.4
Summary: Tryton module to invoice projects
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/work.py b/work.py
index 765e61e..c7fc683 100644
--- a/work.py
+++ b/work.py
@@ -140,6 +140,7 @@ class Work:
def _get_invoiced_amount_effort(works):
pool = Pool()
InvoiceLine = pool.get('account.invoice.line')
+ Currency = pool.get('currency.currency')
with Transaction().set_user(0, set_context=True):
invoice_lines = InvoiceLine.browse([
@@ -149,9 +150,14 @@ class Work:
id2invoice_lines = dict((l.id, l) for l in invoice_lines)
amounts = {}
for work in works:
+ currency = work.company.currency
if work.invoice_line:
invoice_line = id2invoice_lines[work.invoice_line.id]
- amounts[work.id] = invoice_line.amount
+ invoice_currency = (invoice_line.invoice.currency
+ if invoice_line.invoice else invoice_line.currency)
+ amounts[work.id] = Currency.compute(invoice_currency,
+ Decimal(str(work.effort)) * invoice_line.unit_price,
+ currency)
else:
amounts[work.id] = Decimal(0)
return amounts
@@ -160,6 +166,7 @@ class Work:
def _get_invoiced_amount_timesheet(works):
pool = Pool()
InvoiceLine = pool.get('account.invoice.line')
+ Currency = pool.get('currency.currency')
with Transaction().set_user(0, set_context=True):
invoice_lines = InvoiceLine.browse([
@@ -170,13 +177,18 @@ class Work:
id2invoice_lines = dict((l.id, l) for l in invoice_lines)
amounts = {}
for work in works:
+ currency = work.company.currency
amounts[work.id] = Decimal(0)
for timesheet_line in work.work.timesheet_lines:
if not timesheet_line.invoice_line:
continue
invoice_line = id2invoice_lines[timesheet_line.invoice_line.id]
- amounts[work.id] += (invoice_line.unit_price
- * Decimal(str(timesheet_line.hours)))
+ invoice_currency = (invoice_line.invoice.currency
+ if invoice_line.invoice else invoice_line.currency)
+ amounts[work.id] += Currency.compute(invoice_currency,
+ (Decimal(str(timesheet_line.hours))
+ * invoice_line.unit_price),
+ currency)
return amounts
@staticmethod
--
tryton-modules-project-invoice
More information about the tryton-debian-vcs
mailing list