|
@@ -2,7 +2,8 @@
|
|
# Style Guide for Python Code https://www.python.org/dev/peps/pep-0008/
|
|
# Style Guide for Python Code https://www.python.org/dev/peps/pep-0008/
|
|
# Docstring Conventions https://www.python.org/dev/peps/pep-0257/
|
|
# 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:
|
|
class Instance:
|
|
def __init__(self, conn):
|
|
def __init__(self, conn):
|
|
@@ -27,7 +28,7 @@ class Instance:
|
|
sqlfields = sql.SQL(',').join(sqlfields)
|
|
sqlfields = sql.SQL(',').join(sqlfields)
|
|
sqljoin = sql.SQL('LEFT OUTER JOIN llx_adherent_extrafields AS adhx ON (adh.rowid = adhx.fk_object)')
|
|
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)
|
|
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
|
|
return self._cur
|
|
|
|
|
|
def get_adherent_count(self, activeonly=True):
|
|
def get_adherent_count(self, activeonly=True):
|
|
@@ -58,5 +59,13 @@ class Instance:
|
|
FROM llx_societe, llx_contrat, llx_contratdet, llx_product
|
|
FROM llx_societe, llx_contrat, llx_contratdet, llx_product
|
|
WHERE {1}
|
|
WHERE {1}
|
|
ORDER BY llx_product.ref, llx_contrat.rowid ASC""").format(sqlfields, sqlcond)
|
|
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
|
|
return self._cur
|