mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Add files via upload
This commit is contained in:
parent
8c49bacf25
commit
bfc6238a8f
|
@ -13,7 +13,6 @@
|
|||
|
||||
|
||||
-- Dumping database structure for astute
|
||||
DROP DATABASE IF EXISTS `astute`;
|
||||
CREATE DATABASE IF NOT EXISTS `astute` /*!40100 DEFAULT CHARACTER SET utf8 */;
|
||||
USE `astute`;
|
||||
|
||||
|
@ -46,10 +45,10 @@ DELIMITER ;
|
|||
|
||||
-- Dumping structure for procedure astute.create_invoice
|
||||
DELIMITER //
|
||||
CREATE DEFINER=`root`@`localhost` PROCEDURE `create_invoice`(invNo varchar(20),invDate date,PONo varchar(20),changeOrderNum varchar(20),paymentStatus int,billAmt double,specialNotes varchar(500), certClause Varchar(500),pmtReceivedDate date)
|
||||
CREATE DEFINER=`root`@`localhost` PROCEDURE `create_invoice`(invNo varchar(20),invDate date,PONo varchar(20),paymentStatus int,billAmt double,specialNotes varchar(500), certClause Varchar(500), invoiceStatus int)
|
||||
BEGIN
|
||||
INSERT INTO invoice (inv_no,inv_date,PO_num,change_order_num,pmt_status,bill_amt,special_notes,certifcation,pmt_received_date)
|
||||
VALUES (invNo, invDate, PONo, changeOrderNum, paymentStatus, billAmt, specialNotes, certClause, pmtReceivedDate);
|
||||
INSERT INTO invoice (inv_no,inv_date,PO_num,pmt_status,bill_amt,special_notes,certifcation,inv_status)
|
||||
VALUES (invNo, invDate, PONo, paymentStatus, billAmt, specialNotes, certClause, invoiceStatus);
|
||||
END//
|
||||
DELIMITER ;
|
||||
|
||||
|
@ -223,7 +222,6 @@ CREATE TABLE IF NOT EXISTS `invoice` (
|
|||
`inv_no` varchar(20) NOT NULL,
|
||||
`inv_date` date NOT NULL,
|
||||
`PO_num` varchar(40) NOT NULL,
|
||||
`change_order_num` varchar(20) DEFAULT NULL,
|
||||
`bill_amt` double NOT NULL,
|
||||
`special_notes` varchar(500) DEFAULT NULL,
|
||||
`certification` varchar(500) DEFAULT 'Certified that the above items and rates are in accordance with the contractual agreement as verified by the undersigned.',
|
||||
|
@ -234,12 +232,12 @@ 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: ~4 rows (approximately)
|
||||
-- Dumping data for table astute.invoice: ~3 rows (approximately)
|
||||
/*!40000 ALTER TABLE `invoice` DISABLE KEYS */;
|
||||
INSERT INTO `invoice` (`inv_no`, `inv_date`, `PO_num`, `change_order_num`, `bill_amt`, `special_notes`, `certification`, `inv_status`, `pmt_status`) VALUES
|
||||
('123', '2018-01-01', 'EP2649247', 'test', 5000, 'asdf', 'Certified that the above items and rates are in accordance with the contractual agreement as verified by the undersigned.', 1, 1),
|
||||
('NVCC-01_1712_21', '2017-12-28', 'EP2649247', NULL, 16854, '1. Completion of Phase 1 - Preliminaries\r\n2. Invoice not submitted to NVCC. For submitted invoice, see Excel copy\r\n', 'Certified that the above items and rates are in accordance with the contractual agreement as verified by the undersigned.', 1, 1),
|
||||
('test-04_1807_02', '2017-12-28', 'EP2649247', NULL, 16854, '1. Completion of Phase 1 - Preliminaries\r\n2. Invoice not submitted to NVCC. For submitted invoice, see Excel copy\r\n', 'Certified that the above items and rates are in accordance with the contractual agreement as verified by the undersigned.', 1, 1);
|
||||
INSERT INTO `invoice` (`inv_no`, `inv_date`, `PO_num`, `bill_amt`, `special_notes`, `certification`, `inv_status`, `pmt_status`) VALUES
|
||||
('123', '2018-01-01', 'EP2649247', 5000, 'asdf', 'Certified that the above items and rates are in accordance with the contractual agreement as verified by the undersigned.', 1, 1),
|
||||
('NVCC-01_1712_21', '2017-12-28', 'EP2649247', 16854, '1. Completion of Phase 1 - Preliminaries\r\n2. Invoice not submitted to NVCC. For submitted invoice, see Excel copy\r\n', 'Certified that the above items and rates are in accordance with the contractual agreement as verified by the undersigned.', 1, 1),
|
||||
('test-04_1807_02', '2017-12-28', 'EP2649247', 16854, '1. Completion of Phase 1 - Preliminaries\r\n2. Invoice not submitted to NVCC. For submitted invoice, see Excel copy\r\n', 'Certified that the above items and rates are in accordance with the contractual agreement as verified by the undersigned.', 1, 1);
|
||||
/*!40000 ALTER TABLE `invoice` ENABLE KEYS */;
|
||||
|
||||
-- Dumping structure for table astute.invoice_detail
|
||||
|
@ -367,10 +365,10 @@ CREATE TABLE IF NOT EXISTS `po` (
|
|||
CONSTRAINT `po_customer_id` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`customer_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- Dumping data for table astute.po: ~4 rows (approximately)
|
||||
-- Dumping data for table astute.po: ~3 rows (approximately)
|
||||
/*!40000 ALTER TABLE `po` DISABLE KEYS */;
|
||||
INSERT INTO `po` (`PO_num`, `contract_num`, `PO_date`, `contract_amt`, `customer_id`, `astute_project_num`) VALUES
|
||||
('EP2649247', 'TEST123', '2017-10-13', 30000.00, 1, NULL),
|
||||
('EP2649247', 'test123', NULL, 5000.00, 1, 'adf'),
|
||||
('test12', 'test', NULL, 60000.00, 1, NULL),
|
||||
('test3', 'test', NULL, 60000.00, 1, NULL),
|
||||
('test5', 'test', NULL, 60000.00, 1, NULL);
|
||||
|
@ -430,14 +428,6 @@ 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: ~3 rows (approximately)
|
||||
/*!40000 ALTER TABLE `session` DISABLE KEYS */;
|
||||
INSERT INTO `session` (`session_id`, `user_id`, `session_start_date`, `session_end_date`) VALUES
|
||||
('745de7a0e6c1480398ca36116512bc06', 1, NULL, NULL),
|
||||
('985874e08cb74fa08419f8883f3eeff7', 1, NULL, NULL),
|
||||
('a4b6bde153004b7ba17220f5ba2bb323', 1, NULL, NULL);
|
||||
/*!40000 ALTER TABLE `session` ENABLE KEYS */;
|
||||
|
||||
-- Dumping structure for table astute.user
|
||||
CREATE TABLE IF NOT EXISTS `user` (
|
||||
`user_id` int(5) NOT NULL,
|
||||
|
|
Loading…
Reference in New Issue
Block a user