Browse Source

Add account identification to _desctription (AKA memo)

Alois Mahdal 5 years ago
parent
commit
8572ed626e
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      gcconv.py

+ 5
- 0
gcconv.py View File

@@ -350,6 +350,11 @@ class RaifTransaction(BaseTransaction):
350 350
             out.append(message)
351 351
         if note and note != message:
352 352
             out.append(note)
353
+        if dst_account_name:
354
+            out.append(dst_account_name)
355
+        else:
356
+            out.append(dst_account_number)
357
+        out.append("VS:%s" % vs)
353 358
         return " / ".join(out)
354 359
 
355 360
     def _convert_date(self, text):