Browse Source

fcn-dolibarr: add command get-bank-accounts

root 6 years ago
parent
commit
a1d93c71d8
2 changed files with 16 additions and 4 deletions
  1. 4 1
      fcn-dolibarr
  2. 12 3
      fcntoolbox/dolibarr.py

+ 4 - 1
fcn-dolibarr

@@ -8,7 +8,7 @@ import fcntoolbox.dolibarr as dolibarr
 parser = argparse.ArgumentParser()
 
 parser.add_argument("selection", type=str,
-                    choices=["get-adherents", "get-subscribers"])
+                    choices=["get-adherents", "get-subscribers", "get-bank-accounts"])
 parser.add_argument("-c", "--config", type=str,
                     default="/etc/fcntoolbox/config.ini",
                     help="specify a configuration file")
@@ -32,3 +32,6 @@ if args.selection == "get-adherents":
 elif args.selection == "get-subscribers":
   subscribers = doli.get_subscriber(args.product, ['email'])
   print("\n".join(map(lambda x: x[0], subscribers)))
+elif args.selection == "get-bank-accounts":
+  accounts = doli.get_bank_accounts(fields=['iban_prefix'])
+  print("\n".join(map(lambda x: x[0], accounts)))

+ 12 - 3
fcntoolbox/dolibarr.py

@@ -2,7 +2,8 @@
 # Style Guide for Python Code https://www.python.org/dev/peps/pep-0008/
 # Docstring Conventions https://www.python.org/dev/peps/pep-0257/
 
-import psycopg2.sql as sql # >= 2.7
+#import psycopg2.sql as sql # >= 2.7
+from . import sql
 
 class Instance:
   def __init__(self, conn):
@@ -27,7 +28,7 @@ class Instance:
     sqlfields = sql.SQL(',').join(sqlfields)
     sqljoin = sql.SQL('LEFT OUTER JOIN llx_adherent_extrafields AS adhx ON (adh.rowid = adhx.fk_object)')
     sqlquery = sql.SQL("SELECT {0} FROM llx_adherent AS adh {1} WHERE {2}").format(sqlfields, sqljoin, sqlcond)
-    self._cur.execute(sqlquery)
+    self._cur.execute(sqlquery.as_string(self._cur))
     return self._cur
   
   def get_adherent_count(self, activeonly=True):
@@ -58,5 +59,13 @@ class Instance:
     FROM llx_societe, llx_contrat, llx_contratdet, llx_product
     WHERE {1}
     ORDER BY llx_product.ref, llx_contrat.rowid ASC""").format(sqlfields, sqlcond)
-    self._cur.execute(sqlquery)
+    self._cur.execute(sqlquery.as_string(self._cur))
+    return self._cur
+
+  def get_bank_accounts(self, fields=None):
+    # Prepare query
+    if fields is None:
+      fields = ['bank', 'proprio', 'iban_prefix']
+    sqlquery = sql.SQL('SELECT {0} FROM llx_bank_account WHERE courant = 1 AND clos = 0'.format(','.join(fields)))
+    self._cur.execute(sqlquery.as_string(self._cur))
     return self._cur