commit
a509c05a9f
3 changed files with 29 additions and 8 deletions
|
|
@ -50,6 +50,10 @@
|
||||||
<time>{{ btx.time * 1000 | amCalendar}}</time>
|
<time>{{ btx.time * 1000 | amCalendar}}</time>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="line-b p10">
|
||||||
|
<span class="text-gray" translate>Fee</span>:
|
||||||
|
<span class="right">{{feeStr}}</span>
|
||||||
|
</li>
|
||||||
<li ng-if="btx.message" class="line-b p10 oh">
|
<li ng-if="btx.message" class="line-b p10 oh">
|
||||||
<span class="text-gray" translate>Note</span>:
|
<span class="text-gray" translate>Note</span>:
|
||||||
<span class="right">
|
<span class="right">
|
||||||
|
|
|
||||||
|
|
@ -442,6 +442,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
};
|
};
|
||||||
|
|
||||||
self.setTxHistory = function(txs) {
|
self.setTxHistory = function(txs) {
|
||||||
|
var config = configService.getSync().wallet.settings;
|
||||||
var now = Math.floor(Date.now() / 1000);
|
var now = Math.floor(Date.now() / 1000);
|
||||||
var c = 0;
|
var c = 0;
|
||||||
self.txHistoryPaging = txs[self.limitHistory] ? true : false;
|
self.txHistoryPaging = txs[self.limitHistory] ? true : false;
|
||||||
|
|
@ -453,6 +454,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
|
|
||||||
tx.rateTs = Math.floor((tx.ts || now) / 1000);
|
tx.rateTs = Math.floor((tx.ts || now) / 1000);
|
||||||
tx.amountStr = profileService.formatAmount(tx.amount); //$filter('noFractionNumber')(
|
tx.amountStr = profileService.formatAmount(tx.amount); //$filter('noFractionNumber')(
|
||||||
|
if (tx.fees)
|
||||||
|
tx.feeStr = profileService.formatAmount(tx.fees) + ' ' + config.unitName;
|
||||||
|
|
||||||
if (c < self.limitHistory) {
|
if (c < self.limitHistory) {
|
||||||
self.txHistory.push(tx);
|
self.txHistory.push(tx);
|
||||||
c++;
|
c++;
|
||||||
|
|
@ -604,8 +608,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
if (txs && txs.length > 0) {
|
if (txs && txs.length > 0) {
|
||||||
allTxs.push(txs);
|
allTxs.push(txs);
|
||||||
return getHistory(skip + 100, cb);
|
return getHistory(skip + 100, cb);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
return cb(null, lodash.flatten(allTxs));
|
return cb(null, lodash.flatten(allTxs));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
@ -633,7 +636,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
self.satToUnit = 1 / self.unitToSatoshi;
|
self.satToUnit = 1 / self.unitToSatoshi;
|
||||||
var data = txs;
|
var data = txs;
|
||||||
var satToBtc = 1 / 100000000;
|
var satToBtc = 1 / 100000000;
|
||||||
var filename = 'Copay-' + (self.alias || self.walletName ) + '.csv';
|
var filename = 'Copay-' + (self.alias || self.walletName) + '.csv';
|
||||||
var csvContent = '';
|
var csvContent = '';
|
||||||
if (!isNode) csvContent = 'data:text/csv;charset=utf-8,';
|
if (!isNode) csvContent = 'data:text/csv;charset=utf-8,';
|
||||||
csvContent += 'Date,Destination,Note,Amount,Currency,Spot Value,Total Value,Tax Type,Category\n';
|
csvContent += 'Date,Destination,Note,Amount,Currency,Spot Value,Total Value,Tax Type,Category\n';
|
||||||
|
|
@ -641,16 +644,29 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
var _amount, _note;
|
var _amount, _note;
|
||||||
var dataString;
|
var dataString;
|
||||||
data.forEach(function(it, index) {
|
data.forEach(function(it, index) {
|
||||||
_amount = (it.action == 'sent' ? '-' : '') + (it.amount * satToBtc).toFixed(8);
|
var amount = it.amount;
|
||||||
_note = formatString((it.message ? 'Note: ' + it.message + ' - ' : '') + 'TxId: ' + it.txid);
|
|
||||||
|
if (it.action == 'moved')
|
||||||
|
amount = 0;
|
||||||
|
|
||||||
|
_amount = (it.action == 'sent' ? '-' : '') + (amount * satToBtc).toFixed(8);
|
||||||
|
_note = formatString((it.message ? it.message : '') + ' TxId: ' + it.txid + ' Fee:' + (it.fees * satToBtc).toFixed(8));
|
||||||
|
|
||||||
|
if (it.action == 'moved')
|
||||||
|
_note += ' Moved:' + (it.amount * satToBtc).toFixed(8)
|
||||||
|
|
||||||
dataString = formatDate(it.time * 1000) + ',' + formatString(it.addressTo) + ',' + _note + ',' + _amount + ',BTC,,,,';
|
dataString = formatDate(it.time * 1000) + ',' + formatString(it.addressTo) + ',' + _note + ',' + _amount + ',BTC,,,,';
|
||||||
csvContent += index < data.length ? dataString + "\n" : dataString;
|
csvContent += dataString + "\n";
|
||||||
|
|
||||||
|
if (it.fees && (it.action == 'moved' || it.action == 'sent')) {
|
||||||
|
var _fee = (it.fees * satToBtc).toFixed(8)
|
||||||
|
csvContent += formatDate(it.time * 1000) + ',Bitcoin Network Fees,, -' + _fee + ',BTC,,,,' + "\n";
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (isNode) {
|
if (isNode) {
|
||||||
saveFile('#export_file', csvContent);
|
saveFile('#export_file', csvContent);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
var encodedUri = encodeURI(csvContent);
|
var encodedUri = encodeURI(csvContent);
|
||||||
var link = document.createElement("a");
|
var link = document.createElement("a");
|
||||||
link.setAttribute("href", encodedUri);
|
link.setAttribute("href", encodedUri);
|
||||||
|
|
|
||||||
|
|
@ -994,6 +994,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
||||||
$scope.color = fc.backgroundColor;
|
$scope.color = fc.backgroundColor;
|
||||||
$scope.copayerId = fc.credentials.copayerId;
|
$scope.copayerId = fc.credentials.copayerId;
|
||||||
$scope.isShared = fc.credentials.n > 1;
|
$scope.isShared = fc.credentials.n > 1;
|
||||||
|
$scope.feeStr = btx.feeStr;
|
||||||
|
|
||||||
$scope.getAmount = function(amount) {
|
$scope.getAmount = function(amount) {
|
||||||
return self.getAmount(amount);
|
return self.getAmount(amount);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue