Skip to content

Commit

Permalink
redo the market data linking to transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
pvyParts committed Feb 10, 2025
1 parent d779098 commit e3f0591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corptools/task_helpers/char_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ def update_character_transactions(character_id, force_refresh=False):
if item.get('transaction_id') in _current_journal:
type_name, _ = EveItemType.objects.get_or_create_from_esi(
item.get('type_id'))
message = f"{item.get('quantity')}x {type_name.name} @ ${item.get('unit_price'):,.2f}"
message = f"{item.get('quantity')}x {type_name.name} @ {item.get('unit_price'):,.2f} ISK"
CharacterWalletJournalEntry.objects.filter(
character=audit_char,
context_id_type="market_transaction_id",
Expand Down

1 comment on commit e3f0591

@pvyParts
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.