import_payments_from_csv.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. # -*- coding: utf-8 -*-
  2. """
  3. Import payments from a CSV file from a bank. The payments will automatically be
  4. parsed, and there'll be an attempt to automatically match payments with members.
  5. The matching is performed using the label of the payment.
  6. - First, try to find a string such as 'ID-42' where 42 is the member's ID
  7. - Second (if no ID found), try to find a member username (with no ambiguity with
  8. respect to other usernames)
  9. - Third (if no username found), try to find a member family name (with no
  10. ambiguity with respect to other family name)
  11. This script will check if a payment has already been registered with same
  12. properies (date, label, price) to avoid creating duplicate payments inside coin.
  13. By default, only a dry-run is perfomed to let you see what will happen ! You
  14. should run this command with --commit if you agree with the dry-run.
  15. """
  16. from __future__ import unicode_literals
  17. # Standard python libs
  18. import csv
  19. import datetime
  20. import json
  21. import logging
  22. import os
  23. import re
  24. # Django specific imports
  25. from argparse import RawTextHelpFormatter
  26. from django.core.management.base import BaseCommand, CommandError
  27. # Coin specific imports
  28. from coin.members.models import Member
  29. from coin.billing.models import Payment
  30. # Parser / import / matcher configuration
  31. # The CSV delimiter
  32. DELIMITER=str(';')
  33. # The date format in the CSV
  34. DATE_FORMAT="%d/%m/%Y"
  35. # The default regex used to match the label of a payment with a member ID
  36. ID_REGEX=r"(?i)(\b|_)ID[\s\-\_\/]*(\d+)(\b|_)"
  37. # If the label of the payment contains one of these, the payment won't be
  38. # matched to a member when importing it.
  39. KEYWORDS_TO_NOTMATCH=[ "DON", "MECENAT", "REM CHQ" ]
  40. class Command(BaseCommand):
  41. help = __doc__
  42. def create_parser(self, *args, **kwargs):
  43. parser = super(Command, self).create_parser(*args, **kwargs)
  44. parser.formatter_class = RawTextHelpFormatter
  45. return parser
  46. def add_arguments(self, parser):
  47. parser.add_argument(
  48. 'filename',
  49. type=str,
  50. help="The CSV filename to be parsed"
  51. )
  52. parser.add_argument(
  53. '--commit',
  54. action='store_true',
  55. dest='commit',
  56. default=False,
  57. help='Agree with the proposed change and commit them'
  58. )
  59. def handle(self, *args, **options):
  60. assert options["filename"] != ""
  61. if not os.path.isfile(options["filename"]):
  62. raise CommandError("This file does not exists.")
  63. payments = self.convert_csv_to_dicts(self.clean_csv(self.load_csv(options["filename"])))
  64. payments = self.try_to_match_payment_with_members(payments)
  65. new_payments = self.filter_already_known_payments(payments)
  66. new_payments = self.unmatch_payment_with_keywords(new_payments)
  67. number_of_already_known_payments = len(payments)-len(new_payments)
  68. number_of_new_payments = len(new_payments)
  69. if (number_of_new_payments > 0) :
  70. print("======================================================")
  71. print(" > New payments found")
  72. print(json.dumps(new_payments, indent=4, separators=(',', ': ')))
  73. print("======================================================")
  74. print("Number of already known payments found : " + str(number_of_already_known_payments))
  75. print("Number of new payments found : " + str(number_of_new_payments))
  76. print("Number of new payments matched : " + str(len([p for p in new_payments if p["member_matched"]])))
  77. print("Number of payments not matched : " + str(len([p for p in new_payments if not p["member_matched"]])))
  78. print("======================================================")
  79. if number_of_new_payments == 0:
  80. print("Nothing to do, everything looks up to date !")
  81. return
  82. if not options["commit"]:
  83. print("Please carefully review the matches, then if everything \n" \
  84. "looks alright, use --commit to register these new payments.")
  85. else:
  86. self.add_new_payments(new_payments)
  87. def is_date(self, text):
  88. try:
  89. datetime.datetime.strptime(text, DATE_FORMAT)
  90. return True
  91. except ValueError:
  92. return False
  93. def is_money_amount(self, text):
  94. try:
  95. float(text.replace(",","."))
  96. return True
  97. except ValueError:
  98. return False
  99. def load_csv(self, filename):
  100. with open(filename, "r") as f:
  101. return list(csv.reader(f, delimiter=DELIMITER))
  102. def clean_csv(self, data):
  103. output = []
  104. for i, row in enumerate(data):
  105. for j in range(len(row)):
  106. row[j] = row[j].decode('utf-8')
  107. if len(row) < 4:
  108. continue
  109. if not self.is_date(row[0]):
  110. logging.warning("Ignoring the following row (bad format for date in the first column) :")
  111. logging.warning(str(row))
  112. continue
  113. if self.is_money_amount(row[2]):
  114. logging.warning("Ignoring row %s (not a payment)" % str(i))
  115. logging.warning(str(row))
  116. continue
  117. if not self.is_money_amount(row[3]):
  118. logging.warning("Ignoring the following row (bad format for money amount in colun three) :")
  119. logging.warning(str(row))
  120. continue
  121. # Clean the date
  122. row[0] = datetime.datetime.strptime(row[0], DATE_FORMAT).strftime("%Y-%m-%d")
  123. # Clean the label ...
  124. row[4] = row[4].replace('\r', ' ')
  125. row[4] = row[4].replace('\n', ' ')
  126. output.append(row)
  127. return output
  128. def convert_csv_to_dicts(self, data):
  129. output = []
  130. for row in data:
  131. payment = {}
  132. payment["date"] = row[0]
  133. payment["label"] = row[4]
  134. payment["amount"] = float(row[3].replace(",","."))
  135. output.append(payment)
  136. return output
  137. def try_to_match_payment_with_members(self, payments):
  138. members = Member.objects.filter(status="member")
  139. idregex = re.compile(ID_REGEX)
  140. for payment in payments:
  141. payment_label = payment["label"]
  142. # First, attempt to match the member ID
  143. idmatches = idregex.findall(payment_label)
  144. if len(idmatches) == 1:
  145. i = int(idmatches[0][1])
  146. member_matches = [ member.username for member in members if member.pk==i ]
  147. if len(member_matches) == 1:
  148. payment["member_matched"] = member_matches[0]
  149. #print("Matched by ID to "+member_matches[0])
  150. continue
  151. # Second, attempt to find the username
  152. usernamematch = None
  153. for member in members:
  154. matches = re.compile(r"(?i)(\b|_)"+re.escape(member.username)+r"(\b|_)") \
  155. .findall(payment_label)
  156. # If not found, try next
  157. if len(matches) == 0:
  158. continue
  159. # If we already had a match, abort the whole search because we
  160. # have multiple usernames matched !
  161. if usernamematch != None:
  162. usernamematch = None
  163. break
  164. usernamematch = member.username
  165. if usernamematch != None:
  166. payment["member_matched"] = usernamematch
  167. #print("Matched by username to "+usernamematch)
  168. continue
  169. # Third, attempt to match by family name
  170. familynamematch = None
  171. for member in members:
  172. if member.last_name == "":
  173. continue
  174. matches = re.compile(r"(?i)(\b|_)"+re.escape(str(member.last_name))+r"(\b|_)") \
  175. .findall(payment_label)
  176. # If not found, try next
  177. if len(matches) == 0:
  178. continue
  179. # If this familyname was matched several time, abort the whole search
  180. if len(matches) > 1:
  181. familynamematch = None
  182. break
  183. # If we already had a match, abort the whole search because we
  184. # have multiple familynames matched !
  185. if familynamematch != None:
  186. familynamematch = None
  187. break
  188. familynamematch = str(member.last_name)
  189. usernamematch = str(member.username)
  190. if familynamematch != None:
  191. payment["member_matched"] = usernamematch
  192. #print("Matched by familyname to "+familynamematch)
  193. continue
  194. #print("Could not match")
  195. payment["member_matched"] = None
  196. return payments
  197. def unmatch_payment_with_keywords(self, payments):
  198. matchers = {}
  199. for keyword in KEYWORDS_TO_NOTMATCH:
  200. matchers[keyword] = re.compile(r"(?i)(\b|_|-)"+re.escape(keyword)+r"(\b|_|-)")
  201. for i, payment in enumerate(payments):
  202. # If no match found, don't filter anyway
  203. if payment["member_matched"] == None:
  204. continue
  205. for keyword, matcher in matchers.items():
  206. matches = matcher.findall(payment["label"])
  207. # If not found, try next
  208. if len(matches) == 0:
  209. continue
  210. print("Ignoring possible match for payment '%s' because " \
  211. "it contains the keyword %s" \
  212. % (payment["label"], keyword))
  213. payments[i]["member_matched"] = None
  214. break
  215. return payments
  216. def filter_already_known_payments(self, payments):
  217. new_payments = []
  218. known_payments = Payment.objects.all()
  219. for payment in payments:
  220. found_match = False
  221. for known_payment in known_payments:
  222. if (str(known_payment.date) == payment["date"].encode('utf-8')) \
  223. and (known_payment.label == payment["label"]) \
  224. and (float(known_payment.amount) == float(payment["amount"])):
  225. found_match = True
  226. break
  227. if not found_match:
  228. new_payments.append(payment)
  229. return new_payments
  230. def add_new_payments(self, new_payments):
  231. for new_payment in new_payments:
  232. # Get the member if there's a member matched
  233. member = None
  234. if new_payment["member_matched"]:
  235. member = Member.objects.filter(username=new_payment["member_matched"])
  236. assert len(member) == 1
  237. member = member[0]
  238. print("Adding new payment : ")
  239. print(new_payment)
  240. # Create the payment
  241. payment = Payment.objects.create(amount=float(new_payment["amount"]),
  242. label=new_payment["label"],
  243. date=new_payment["date"],
  244. member=member)