diff --git a/modules/claim/front/search-panel/index.html b/modules/claim/front/search-panel/index.html index b6ac71989f..6efd6603b1 100644 --- a/modules/claim/front/search-panel/index.html +++ b/modules/claim/front/search-panel/index.html @@ -28,7 +28,7 @@ url="Workers/activeWithRole" search-function="{firstName: $search}" value-field="id" - where="{role: 'salesPerson'}" + where="{role: {inq: ['salesPerson', 'officeBoss']}}" label="Salesperson"> {{firstName}} {{name}} diff --git a/modules/entry/front/descriptor/index.html b/modules/entry/front/descriptor/index.html index 8955b3ee94..04bef0024e 100644 --- a/modules/entry/front/descriptor/index.html +++ b/modules/entry/front/descriptor/index.html @@ -34,13 +34,20 @@ diff --git a/print/templates/reports/claim-pickup-order/locale/es.yml b/print/templates/reports/claim-pickup-order/locale/es.yml index 28bfa73a93..385a54917a 100644 --- a/print/templates/reports/claim-pickup-order/locale/es.yml +++ b/print/templates/reports/claim-pickup-order/locale/es.yml @@ -11,5 +11,5 @@ clientSignature: Firma del cliente claim: Reclamación {0} sections: agency: - description: 'Para agilizar su recogida, por favor, póngase en contacto con la oficina - de integrados.
Tlf: 96 166 77 88 - Ana Gómez (Ext. 2113) (agomezf@integra2.com)' + description: 'Para agilizar su recogida, por favor, póngase en contacto con la oficina + de Logista Parcel.
Tlf: 96 166 77 88 - Ana Gómez (Ext. 2113) (atcsalidas.i2valencia@integra2.es)' diff --git a/print/templates/reports/claim-pickup-order/sql/client.sql b/print/templates/reports/claim-pickup-order/sql/client.sql index 2498574333..30a42d5c88 100644 --- a/print/templates/reports/claim-pickup-order/sql/client.sql +++ b/print/templates/reports/claim-pickup-order/sql/client.sql @@ -12,8 +12,9 @@ SELECT FROM claim cl JOIN client c ON c.id = cl.clientFk JOIN account.user u ON u.id = c.id - JOIN country ct ON ct.id = c.countryFk JOIN ticket t ON t.id = cl.ticketFk JOIN address a ON a.id = t.addressFk - LEFT JOIN province p ON p.id = c.provinceFk + LEFT JOIN province p ON p.id = a.provinceFk + LEFT JOIN autonomy amy ON amy.id = p.autonomyFk + LEFT JOIN country ct ON ct.id = amy.countryFk WHERE cl.id = ? \ No newline at end of file