Skip to content
Code-Schnipsel Gruppen Projekte
Commit d50710cd erstellt von Patrick Müller's avatar Patrick Müller
Dateien durchsuchen

fix: get invoice -> consider actual invoice prefix quiqqer/dunning#11

Übergeordneter a8d268a3
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
...@@ -379,27 +379,19 @@ public function getInvoiceByHash(string $hash): Invoice ...@@ -379,27 +379,19 @@ public function getInvoiceByHash(string $hash): Invoice
*/ */
public function getInvoiceData($id): array public function getInvoiceData($id): array
{ {
$prefix = Settings::getInstance()->getInvoicePrefix(); $sql = "SELECT *, CONCAT(`id_prefix`, `id`) as id_with_prefix FROM ".self::invoiceTable();
$hash = QUI\Utils\Security\Orthos::clear($id);
if (!is_numeric(str_replace($prefix, '', $id))) { if (\is_numeric($id)) {
throw new Exception( $sql .= " HAVING `id` = ".(int)$id." OR `id_with_prefix` = ".$id;
['quiqqer/invoice', 'exception.invoice.not.found', ['id' => $hash]], } else {
404 $sql .= " HAVING `id_with_prefix` = '".$id."'";
);
} }
$result = QUI::getDataBase()->fetch([ $result = QUI::getDataBase()->fetchSQL($sql);
'from' => self::invoiceTable(),
'where' => [
'id' => (int)str_replace($prefix, '', $id)
],
'limit' => 1
]);
if (!isset($result[0])) { if (!isset($result[0])) {
throw new Exception( throw new Exception(
['quiqqer/invoice', 'exception.invoice.not.found', ['id' => $hash]], ['quiqqer/invoice', 'exception.invoice.not.found', ['id' => $id]],
404 404
); );
} }
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren