Skip to content
Snippets Groups Projects
Commit 93ccca50 authored by Julián García Tuñón's avatar Julián García Tuñón
Browse files

Merge branch 'release/1.3.4' into support/1.3.x

parents c71852b4 0b79bccd
No related branches found
Tags 1.3.4
No related merge requests found
...@@ -145,6 +145,9 @@ class dao_comprobantes extends dao ...@@ -145,6 +145,9 @@ class dao_comprobantes extends dao
if(isset($filtro['id_comprobante_template'])) { if(isset($filtro['id_comprobante_template'])) {
$where .= " AND c.id_comprobante_template = " . $this->quote($filtro['id_comprobante_template']); $where .= " AND c.id_comprobante_template = " . $this->quote($filtro['id_comprobante_template']);
} }
if(isset($filtro['id_punto_cobranza'])) {
$where .= " AND c.id_punto_cobranza = " . $this->quote($filtro['id_punto_cobranza']);
}
$faltantes = []; $faltantes = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment