fusion des cabinets indépendants des sociétés
This commit is contained in:
@@ -52,8 +52,8 @@ def get_dossier_by_no(request,nodossier):
|
||||
query = """
|
||||
SELECT d.*, c.*, a.NOM as nom_cabinet, e.NOM as nom_expert FROM %s d
|
||||
INNER JOIN clients c ON d.societe = c.societe and d.cd_cli = c.cd_cli
|
||||
INNER JOIN p_cabinet a ON d.societe = a.societe and d.cabinet = a.code
|
||||
INNER JOIN p_experts e ON d.societe = e.societe and d.cabinet = e.code_cab and d.expert = e.code_exp
|
||||
INNER JOIN p_cabinet a ON d.cabinet = a.code
|
||||
INNER JOIN p_experts e ON d.cabinet = e.code_cab and d.expert = e.code_exp
|
||||
where d.societe = '%s' and d.no_id=%s;""" % (table, societe, no_id);
|
||||
results = request.dbsession.execute(query).first()
|
||||
return results
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
.navbar {
|
||||
margin-bottom: 0;
|
||||
background-color: #f5f5f5;
|
||||
background-color: #fe9900;
|
||||
color: #404040 !important;
|
||||
z-index: 9999;
|
||||
border: 0;
|
||||
|
||||
Reference in New Issue
Block a user