This commit is contained in:
parent
be81835474
commit
614652c357
|
@ -12,19 +12,19 @@ BEGIN
|
|||
DECLARE vHasSectorCollection INT;
|
||||
|
||||
SELECT COUNT(id) INTO vHasSaleGroup
|
||||
FROM vn.saleGroup sg
|
||||
WHERE sg.id = vSaleGroupFk;
|
||||
FROM vn.saleGroup
|
||||
WHERE id = vSaleGroupFk;
|
||||
|
||||
IF !vHasSaleGroup THEN
|
||||
CALL util.throw ("INVALID_SALEGROUP");
|
||||
CALL util.throw ("invalid saleGroup");
|
||||
END IF;
|
||||
|
||||
SELECT COUNT(id) INTO vHasSectorCollection
|
||||
FROM vn.sectorCollection scsg
|
||||
WHERE scsg.id = vSectorCollectionFk;
|
||||
FROM vn.sectorCollection
|
||||
WHERE id = vSectorCollectionFk;
|
||||
|
||||
IF !vHasSectorCollection THEN
|
||||
CALL util.throw ("INVALID_SECTORCOLLECTION");
|
||||
CALL util.throw ("invalid sectorCollection");
|
||||
END IF;
|
||||
|
||||
REPLACE sectorCollectionSaleGroup
|
||||
|
|
Loading…
Reference in New Issue