2024-01-15 11:31:03 +00:00
|
|
|
CREATE OR REPLACE DEFINER=`root`@`localhost`
|
|
|
|
SQL SECURITY DEFINER
|
|
|
|
VIEW `vn2008`.`Tipos`
|
|
|
|
AS SELECT `it`.`id` AS `tipo_id`,
|
|
|
|
`it`.`code` AS `Id_Tipo`,
|
|
|
|
`it`.`name` AS `Tipo`,
|
|
|
|
`it`.`order` AS `Orden`,
|
|
|
|
`it`.`categoryFk` AS `reino_id`,
|
|
|
|
`it`.`workerFk` AS `Id_Trabajador`,
|
|
|
|
`it`.`life` AS `life`,
|
|
|
|
`it`.`isPackaging` AS `isPackaging`,
|
|
|
|
`it`.`isInventory` AS `inventory`,
|
|
|
|
`it`.`created` AS `odbc_date`,
|
|
|
|
`it`.`making` AS `confeccion`,
|
|
|
|
`it`.`temperatureFk` AS `Temperatura`,
|
2024-07-01 10:06:30 +00:00
|
|
|
`it`.`promo` AS `promo`
|
2024-01-15 11:31:03 +00:00
|
|
|
FROM `vn`.`itemType` `it`
|