Merge pull request #1838 from matiaspando/addSignersToCSV

Added column signers to CSV file
This commit is contained in:
Matias Alejo Garcia 2014-11-19 16:14:42 -03:00
commit b554c4c7ea
1 changed files with 23 additions and 7 deletions

View File

@ -29,7 +29,6 @@ angular.module('copayApp.controllers').controller('HistoryController',
$scope.downloadHistory = function() {
if (window.cordova) {
log.info('Not available on mobile');
return;
@ -41,18 +40,25 @@ angular.module('copayApp.controllers').controller('HistoryController',
w.getTransactionHistory(function(err, res) {
if (err) throw err;
if (!res) {
return;
}
if (!res) return;
var unit = w.settings.unitName;
var data = res.items;
var filename = "copay_history.csv";
var csvContent = "data:text/csv;charset=utf-8,";
csvContent += "Date,Amount(" + unit + "),Action,AddressTo,Comment\n";
csvContent += "Date,Amount(" + unit + "),Action,AddressTo,Comment";
if (w.isShared()) {
csvContent += ",Signers\n";
} else {
csvContent += "\n";
}
data.forEach(function(it, index) {
var dataString = formatDate(it.minedTs || it.sentTs) + ',' + it.amount + ',' + it.action + ',' + it.addressTo + ',' + formatString(it.comment);
var dataString = formatDate(it.minedTs || it.sentTs) + ',' + it.amount + ',' + it.action + ',' + formatString(it.addressTo) + ',' + formatString(it.comment);
if (it.actionList) {
dataString += ',' + formatSigners(it.actionList);
}
csvContent += index < data.length ? dataString + "\n" : dataString;
});
@ -91,12 +97,22 @@ angular.module('copayApp.controllers').controller('HistoryController',
return str;
}
});
function formatSigners(item) {
if (!item) return '';
var str = '';
item.forEach(function(it, index) {
str += index == 0 ? w.publicKeyRing.nicknameForCopayer(it.cId) : '|' + w.publicKeyRing.nicknameForCopayer(it.cId);
});
return str;
}
})
};
$scope.update = function() {
$scope.getTransactions();
};