refs #7217 create travel_throwAWBError #2465

Merged
ivanm merged 8 commits from 7217-Unify_errorMessageAWB into dev 2024-05-27 10:34:30 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 7e22e19e62 - Show all commits

View File

@ -8,7 +8,7 @@ BEGIN
* @param vSelf The travel id
*/
IF NOT travel_hasUniqueAwb(vSelf) THEN
CALL util.throw('The AWB is wrong. A different AWB is in the entries');
END IF;
CALL util.throw('A different AWB is found in the entries');
ivanm marked this conversation as resolved Outdated

Por que pones un ; ??

Por que pones un ; ??

Creo que con A different AWB is found in the entries es suficiente, ya que si no hay redundancia.

Creo que con `A different AWB is found in the entries` es suficiente, ya que si no hay redundancia.
END IF;
END$$
DELIMITER ;