Kirti Savalia(OpenERP) has proposed merging 
lp:~openerp-dev/openobject-addons/6.0-opw-581144-ksa into 
lp:openobject-addons/6.0.

Requested reviews:
  Naresh(OpenERP) (nch-openerp)
Related bugs:
  Bug #1068611 in OpenERP Addons: "account/point_of_sale: missing cents and 200 
€"
  https://bugs.launchpad.net/openobject-addons/+bug/1068611

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/6.0-opw-581144-ksa/+merge/130989

Hello,

Listing of currency notes/coins that is incomplete.

Thanks
KSA
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/6.0-opw-581144-ksa/+merge/130989
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openobject-addons/6.0-opw-581144-ksa.
=== modified file 'account/account_cash_statement.py'
--- account/account_cash_statement.py	2011-03-03 08:39:43 +0000
+++ account/account_cash_statement.py	2012-10-23 12:37:25 +0000
@@ -163,7 +163,7 @@
 
     def _get_cash_open_box_lines(self, cr, uid, context=None):
         res = []
-        curr = [1, 2, 5, 10, 20, 50, 100, 500]
+        curr = [0.01, 0.02, 0.05, 0.10, 0.20, 0.25, 0.50, 1, 2, 5, 10, 20, 50, 100, 200, 500, 1000, 2000, 5000]
         for rs in curr:
             dct = {
                 'pieces': rs,
@@ -183,7 +183,7 @@
 
     def _get_default_cash_close_box_lines(self, cr, uid, context=None):
         res = []
-        curr = [1, 2, 5, 10, 20, 50, 100, 500]
+        curr = [0.01, 0.02, 0.05, 0.10, 0.20, 0.25, 0.50, 1, 2, 5, 10, 20, 50, 100, 200, 500, 1000, 2000, 5000]
         for rs in curr:
             dct = {
                 'pieces': rs,
@@ -194,7 +194,7 @@
 
     def _get_cash_close_box_lines(self, cr, uid, context=None):
         res = []
-        curr = [1, 2, 5, 10, 20, 50, 100, 500]
+        curr = [0.01, 0.02, 0.05, 0.10, 0.20, 0.25, 0.50, 1, 2, 5, 10, 20, 50, 100, 200, 500, 1000, 2000, 5000]
         for rs in curr:
             dct = {
                 'pieces': rs,

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to