From f9120250be0f90f5044fe128b29e039802e65456 Mon Sep 17 00:00:00 2001 From: gopi17701 Date: Sun, 27 Jan 2019 00:40:27 -0500 Subject: [PATCH] Fixed defects. --- AstuteSystem/sql/astute.sql | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/AstuteSystem/sql/astute.sql b/AstuteSystem/sql/astute.sql index 55f71a0..cd9a246 100644 --- a/AstuteSystem/sql/astute.sql +++ b/AstuteSystem/sql/astute.sql @@ -137,6 +137,9 @@ CREATE TABLE IF NOT EXISTS `customer_contact` ( -- Dumping data for table astute.customer_contact: ~0 rows (approximately) /*!40000 ALTER TABLE `customer_contact` DISABLE KEYS */; +INSERT INTO `customer_contact` (`customer_id`, `contact_id`, `name`, `title`, `work_phone`, `work_phone_ext`, `mobile`, `fax`, `email`, `address`) VALUES + ('MDOT', 1, 'John Shaw', 'Manager', 1231231233, 1233, 1232343455, 234123344, 'Test@Test.com', '123 Test Drive'), + ('MDOT', 2, 'John John', 'Manager', 1231231233, 1233, 1232343455, 234123344, 'Test@Test.com', '123 Test Drive'); /*!40000 ALTER TABLE `customer_contact` ENABLE KEYS */; -- Dumping structure for function astute.delete_custmer @@ -380,7 +383,7 @@ CREATE TABLE IF NOT EXISTS `invoice` ( CONSTRAINT `fk_InvMaster_POnum` FOREIGN KEY (`PO_num`) REFERENCES `po` (`PO_num`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; --- Dumping data for table astute.invoice: ~3 rows (approximately) +-- Dumping data for table astute.invoice: ~5 rows (approximately) /*!40000 ALTER TABLE `invoice` DISABLE KEYS */; INSERT INTO `invoice` (`inv_no`, `inv_date`, `PO_num`, `bill_amt`, `special_notes`, `certification`, `inv_status`, `pmt_status`) VALUES ('MDO-01_0108_1', '2019-01-08', 'MDOT-123', 30250, 'Test', 'Certified that the above items and rates are in accordance with the contractual agreement as verified by the undersigned', 3, 1), @@ -454,7 +457,7 @@ CREATE TABLE IF NOT EXISTS `invoice_payment` ( CONSTRAINT `fk_pinv_pmt_type` FOREIGN KEY (`invoice_payment_type`) REFERENCES `payment_type` (`payment_type_id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8; --- Dumping data for table astute.invoice_payment: ~2 rows (approximately) +-- Dumping data for table astute.invoice_payment: ~3 rows (approximately) /*!40000 ALTER TABLE `invoice_payment` DISABLE KEYS */; INSERT INTO `invoice_payment` (`inv_no`, `invoice_payment_type`, `invoice_amount`, `payment_date`, `invoice_payment_id`, `check_no`, `void_payment_status`, `transaction_no`) VALUES ('VDO-02_0107_2', 2, 5000, '2019-01-09', 13, '123123', 0, '456456'), @@ -509,7 +512,7 @@ CREATE TABLE IF NOT EXISTS `payment_type` ( PRIMARY KEY (`payment_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; --- Dumping data for table astute.payment_type: ~3 rows (approximately) +-- Dumping data for table astute.payment_type: ~4 rows (approximately) /*!40000 ALTER TABLE `payment_type` DISABLE KEYS */; INSERT INTO `payment_type` (`payment_type_id`, `payment_type_name`) VALUES (1, 'Credit Card'), @@ -586,7 +589,7 @@ CREATE TABLE IF NOT EXISTS `service_type` ( PRIMARY KEY (`service_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; --- Dumping data for table astute.service_type: ~5 rows (approximately) +-- Dumping data for table astute.service_type: ~6 rows (approximately) /*!40000 ALTER TABLE `service_type` DISABLE KEYS */; INSERT INTO `service_type` (`service_type_id`, `desc`) VALUES (1, 'Studies'), @@ -608,7 +611,7 @@ CREATE TABLE IF NOT EXISTS `session` ( CONSTRAINT `fk_session_user_id` FOREIGN KEY (`user_id`) REFERENCES `user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; --- Dumping data for table astute.session: ~22 rows (approximately) +-- Dumping data for table astute.session: ~28 rows (approximately) /*!40000 ALTER TABLE `session` DISABLE KEYS */; INSERT INTO `session` (`session_id`, `user_id`, `session_start_date`, `session_end_date`) VALUES ('042ef08346f84d52b98a22dab48c7b1c', 1, NULL, NULL),