Преглед на файлове

Add account identification to _desctription (AKA memo)

Alois Mahdal преди 5 години
родител
ревизия
8572ed626e
променени са 1 файла, в които са добавени 5 реда и са изтрити 0 реда
  1. 5
    0
      gcconv.py

+ 5
- 0
gcconv.py Целия файл

@@ -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):