2024-08-20 08:06:10 +00:00
|
|
|
CREATE OR REPLACE DEFINER=`vn`@`localhost`
|
2024-01-15 11:31:03 +00:00
|
|
|
SQL SECURITY DEFINER
|
|
|
|
VIEW `vn`.`companyL10n`
|
|
|
|
AS SELECT `c`.`id` AS `id`,
|
|
|
|
IFNULL(`ci`.`footnotes`, `c`.`footnotes`) AS `footnotes`
|
|
|
|
FROM (
|
|
|
|
`vn`.`company` `c`
|
|
|
|
LEFT JOIN `vn`.`companyI18n` `ci` ON(
|
|
|
|
`ci`.`companyFk` = `c`.`id`
|
|
|
|
AND `ci`.`lang` = `util`.`LANG`()
|
|
|
|
)
|
|
|
|
)
|