Skip to content

Commit

Permalink
After fixing issue #6, OUT transaciton fee is no longer highlighted (…
Browse files Browse the repository at this point in the history
…because it's no longer taxed)
  • Loading branch information
eprbell committed Feb 4, 2022
1 parent eaa5dc4 commit af0d29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rp2/plugin/report/rp2_full_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def __generate_out_table(self, sheet: Any, computed_data: ComputedData, row_inde
self._fill_cell(sheet, row_index, 9, computed_data.get_crypto_out_running_sum(transaction), data_style="crypto", visual_style=visual_style)
self._fill_cell(sheet, row_index, 10, computed_data.get_crypto_out_fee_running_sum(transaction), data_style="crypto", visual_style=visual_style)
self._fill_cell(sheet, row_index, 11, transaction.crypto_out_no_fee * transaction.spot_price, visual_style=highlighted_style, data_style="fiat")
self._fill_cell(sheet, row_index, 12, transaction.crypto_fee * transaction.spot_price, visual_style=highlighted_style, data_style="fiat")
self._fill_cell(sheet, row_index, 12, transaction.crypto_fee * transaction.spot_price, visual_style=visual_style, data_style="fiat")
self._fill_cell(sheet, row_index, 13, "YES" if transaction.is_taxable() else "NO", data_style="fiat", visual_style=visual_style)
self._fill_cell(sheet, row_index, 14, transaction.notes, visual_style="transparent")

Expand Down

0 comments on commit af0d29d

Please sign in to comment.