From e0d2a2317d5137b3cd2d42b78c13535ed314de59 Mon Sep 17 00:00:00 2001 From: Gopi Katwala Date: Sun, 14 Jul 2019 21:53:57 -0400 Subject: [PATCH] new SQL function is_so_fulfilled --- AstuteSystem/sql/astute.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/AstuteSystem/sql/astute.sql b/AstuteSystem/sql/astute.sql index 48a4741..04ee9ef 100644 --- a/AstuteSystem/sql/astute.sql +++ b/AstuteSystem/sql/astute.sql @@ -781,6 +781,17 @@ return rem_qty; END// DELIMITER ; +CREATE FUNCTION astute.`is_po_fulfilled`(po_no varchar(20)) RETURNS int(1) +BEGIN + declare count int; + SELECT count(*) INTO count FROM po_detail WHERE PO_num = po_no and remaining_qty > 0; + if count > 0 then + return 0; + else + return 1; + end if; +END; + -- Dumping structure for table astute.user CREATE TABLE IF NOT EXISTS `user` ( `user_id` int(5) NOT NULL,