--- cashup_true.js	2015-09-28 12:11:02.866368512 +0200
+++ cashup_partial.js	2015-09-28 12:11:54.714964168 +0200
@@ -10,23 +10,8 @@
       totalCounted: this.get('totalCounted'),
       totalExpected: this.get('totalExpected'),
       totalDifference: this.get('totalDifference'),
-      totalQtyToKeep: _.reduce(this.get('paymentList').models, function (total, model) {
-        if (model.get('qtyToKeep')) {
-          var cQtyToKeep = OB.UTIL.currency.toDefaultCurrency(model.get('paymentMethod').currency, model.get('qtyToKeep'));
-          return OB.DEC.add(total, cQtyToKeep);
-        } else {
-          return total;
-        }
-      }, 0),
-      totalQtyToDepo: _.reduce(this.get('paymentList').models, function (total, model) {
-        if (model.get('qtyToKeep') !== null && model.get('qtyToKeep') !== undf && model.get('foreignCounted') !== null && model.get('foreignCounted') !== undf) {
-          var qtyToDepo = OB.DEC.sub(model.get('foreignCounted'), model.get('qtyToKeep'));
-          var cQtyToDepo = OB.UTIL.currency.toDefaultCurrency(model.get('paymentMethod').currency, qtyToDepo);
-          return OB.DEC.add(total, cQtyToDepo);
-        } else {
-          return total;
-        }
-      }, 0)
+      totalQtyToKeep: OB.DEC.Zero,
+      totalQtyToDepo: OB.DEC.Zero
     };
     //First we fix the qty to keep for non-automated payment methods
     _.each(this.get('paymentList').models, function (model) {
@@ -57,23 +42,17 @@
           switch (enumSummarys[counter]) {
           case 'qtyToKeepSummary':
             if (model.get(enumSecondConcepts[counter]) !== null && model.get(enumSecondConcepts[counter]) !== undf) {
-              value = OB.UTIL.currency.toDefaultCurrency(fromCurrencyId, model.get(enumConcepts[counter]));
-              second = model.get(enumSecondConcepts[counter]);
+              value = OB.DEC.Zero;
+              second = OB.DEC.Zero;
             }
             break;
           case 'qtyToDepoSummary':
             if (model.get(enumSecondConcepts[counter]) !== null && model.get(enumSecondConcepts[counter]) !== undf && model.get('rate') !== '1') {
-              second = OB.DEC.sub(model.get(enumConcepts[counter]), model.get(enumSecondConcepts[counter]));
-            } else {
               second = OB.DEC.Zero;
             }
             if (model.get(enumSecondConcepts[counter]) !== null && model.get(enumSecondConcepts[counter]) !== undf) {
-              var baseAmount = OB.DEC.sub(model.get(enumConcepts[counter]), model.get(enumSecondConcepts[counter]));
-              value = OB.UTIL.currency.toDefaultCurrency(fromCurrencyId, baseAmount);
-            } else {
               value = OB.DEC.Zero;
             }
-
             break;
           default:
             value = model.get(enumConcepts[counter]);
@@ -91,4 +70,3 @@
     }
     return countCashSummary;
   },
-
