feat: refs #6869 refs#6869 itemShelving_get
gitea/salix/pipeline/pr-dev This commit looks good
Details
gitea/salix/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
a41fc36f90
commit
7a4455d6d0
|
@ -0,0 +1,30 @@
|
||||||
|
DELIMITER $$
|
||||||
|
CREATE OR REPLACE DEFINER=`vn`@`localhost` PROCEDURE `vn`.`itemShelving_get`(IN vSelf VARCHAR(8))
|
||||||
|
BEGIN
|
||||||
|
/**
|
||||||
|
* Lista artículos de itemshelving
|
||||||
|
*
|
||||||
|
* @param vSelf matrícula del carro
|
||||||
|
**/
|
||||||
|
SELECT ish.itemFk item,
|
||||||
|
i.name,
|
||||||
|
i.longName,
|
||||||
|
i.size,
|
||||||
|
ish.visible,
|
||||||
|
ish.packing,
|
||||||
|
ish.grouping,
|
||||||
|
p.code,
|
||||||
|
ish.id,
|
||||||
|
s.priority,
|
||||||
|
ish.isChecked,
|
||||||
|
ic.url,
|
||||||
|
ish.available,
|
||||||
|
ish.buyFk
|
||||||
|
FROM itemShelving ish
|
||||||
|
JOIN item i ON i.id = ish.itemFk
|
||||||
|
JOIN shelving s ON vSelf = s.code COLLATE utf8_unicode_ci
|
||||||
|
LEFT JOIN parking p ON s.parkingFk = p.id
|
||||||
|
JOIN hedera.imageConfig ic
|
||||||
|
WHERE ish.shelvingFk COLLATE utf8_unicode_ci = vSelf;
|
||||||
|
END$$
|
||||||
|
DELIMITER ;
|
Loading…
Reference in New Issue