create.sql 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. -- phpMyAdmin SQL Dump
  2. -- version 3.4.5
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Erstellungszeit: 15. Jul 2022 um 17:41
  7. -- Server Version: 5.5.16
  8. -- PHP-Version: 5.3.8
  9. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  10. SET time_zone = "+00:00";
  11. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  12. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  13. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  14. /*!40101 SET NAMES utf8 */;
  15. --
  16. -- Datenbank: `kasse`
  17. --
  18. -- --------------------------------------------------------
  19. --
  20. -- Tabellenstruktur für Tabelle `invoice_details`
  21. --
  22. DROP TABLE IF EXISTS `invoice_details`;
  23. CREATE TABLE IF NOT EXISTS `invoice_details` (
  24. `project_id` int(11) NOT NULL DEFAULT '1',
  25. `invoice_number` int(11) NOT NULL,
  26. `line_number` int(11) NOT NULL,
  27. `item` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  28. `seller_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  29. `item_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  30. `price` decimal(6,2) NOT NULL,
  31. `cancelled` tinyint(4) NOT NULL DEFAULT '0',
  32. PRIMARY KEY (`project_id`,`invoice_number`,`line_number`)
  33. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  34. -- --------------------------------------------------------
  35. --
  36. -- Tabellenstruktur für Tabelle `invoice_header`
  37. --
  38. DROP TABLE IF EXISTS `invoice_header`;
  39. CREATE TABLE IF NOT EXISTS `invoice_header` (
  40. `invoice_number` int(11) NOT NULL AUTO_INCREMENT,
  41. `project_id` int(11) NOT NULL,
  42. `pos_id` int(11) NOT NULL,
  43. `invoice_date` datetime NOT NULL,
  44. `cashier` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  45. `line_count` int(11) NOT NULL,
  46. `total` decimal(6,2) NOT NULL,
  47. `paid` decimal(6,2) NOT NULL,
  48. `checkout` tinyint(4) NOT NULL DEFAULT '0',
  49. `printed` tinyint(4) NOT NULL DEFAULT '0',
  50. `mdate` datetime NOT NULL,
  51. `cdate` datetime NOT NULL,
  52. PRIMARY KEY (`invoice_number`)
  53. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2477 ;
  54. -- --------------------------------------------------------
  55. --
  56. -- Tabellenstruktur für Tabelle `items`
  57. --
  58. DROP TABLE IF EXISTS `items`;
  59. CREATE TABLE IF NOT EXISTS `items` (
  60. `project_id` int(11) NOT NULL,
  61. `seller_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  62. `item_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  63. `description` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  64. `price` decimal(6,2) NOT NULL,
  65. `mdate` datetime NOT NULL,
  66. `cdate` datetime NOT NULL
  67. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  68. -- --------------------------------------------------------
  69. --
  70. -- Tabellenstruktur für Tabelle `pos`
  71. --
  72. DROP TABLE IF EXISTS `pos`;
  73. CREATE TABLE IF NOT EXISTS `pos` (
  74. `pos_id` int(11) NOT NULL,
  75. `token` int(11) NOT NULL,
  76. `active` tinyint(4) NOT NULL,
  77. `disabled` tinyint(4) NOT NULL,
  78. `cashier_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  79. `mdate` datetime NOT NULL,
  80. `cdate` datetime NOT NULL,
  81. PRIMARY KEY (`pos_id`)
  82. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  83. -- --------------------------------------------------------
  84. --
  85. -- Tabellenstruktur für Tabelle `projects`
  86. --
  87. DROP TABLE IF EXISTS `projects`;
  88. CREATE TABLE IF NOT EXISTS `projects` (
  89. `project_id` int(11) NOT NULL AUTO_INCREMENT,
  90. `event_date` date NOT NULL,
  91. `event_location` varchar(255) NOT NULL,
  92. `print_header` text NOT NULL,
  93. `print_footer` text NOT NULL,
  94. `active` tinyint(4) NOT NULL DEFAULT '0',
  95. `mdate` datetime NOT NULL,
  96. `cdate` datetime NOT NULL,
  97. PRIMARY KEY (`project_id`)
  98. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
  99. -- --------------------------------------------------------
  100. --
  101. -- Tabellenstruktur für Tabelle `sellers`
  102. --
  103. DROP TABLE IF EXISTS `sellers`;
  104. CREATE TABLE IF NOT EXISTS `sellers` (
  105. `project_id` int(11) NOT NULL DEFAULT '1',
  106. `seller_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  107. `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  108. `first_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  109. `address` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  110. `zip_code` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  111. `place` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  112. `mail` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  113. `phone` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  114. `mdate` datetime NOT NULL,
  115. `cdate` datetime NOT NULL,
  116. PRIMARY KEY (`project_id`,`seller_id`)
  117. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  118. -- --------------------------------------------------------
  119. --
  120. -- Stellvertreter-Struktur des Views `view_invoices`
  121. --
  122. DROP VIEW IF EXISTS `view_invoices`;
  123. CREATE TABLE IF NOT EXISTS `view_invoices` (
  124. `invoice_number` int(11)
  125. ,`project_id` int(11)
  126. ,`pos_id` int(11)
  127. ,`invoice_date` datetime
  128. ,`cashier` varchar(30)
  129. ,`line_count` bigint(21)
  130. ,`total` decimal(28,2)
  131. ,`line_number` int(11)
  132. ,`item` varchar(10)
  133. ,`seller_id` varchar(5)
  134. ,`item_id` varchar(5)
  135. ,`price` decimal(6,2)
  136. );
  137. -- --------------------------------------------------------
  138. --
  139. -- Stellvertreter-Struktur des Views `view_invoice_header`
  140. --
  141. DROP VIEW IF EXISTS `view_invoice_header`;
  142. CREATE TABLE IF NOT EXISTS `view_invoice_header` (
  143. `invoice_number` int(11)
  144. ,`project_id` int(11)
  145. ,`pos_id` int(11)
  146. ,`invoice_date` datetime
  147. ,`cashier` varchar(30)
  148. ,`paid` decimal(6,2)
  149. ,`checkout` tinyint(4)
  150. ,`printed` tinyint(4)
  151. ,`line_count` bigint(21)
  152. ,`total` decimal(28,2)
  153. ,`mdate` datetime
  154. ,`cdate` datetime
  155. );
  156. -- --------------------------------------------------------
  157. --
  158. -- Stellvertreter-Struktur des Views `view_totals`
  159. --
  160. DROP VIEW IF EXISTS `view_totals`;
  161. CREATE TABLE IF NOT EXISTS `view_totals` (
  162. `invoice_number` int(11)
  163. ,`line_count` bigint(21)
  164. ,`total` decimal(28,2)
  165. );
  166. -- --------------------------------------------------------
  167. --
  168. -- Struktur des Views `view_invoices`
  169. --
  170. DROP TABLE IF EXISTS `view_invoices`;
  171. CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `view_invoices` AS select `a`.`invoice_number` AS `invoice_number`,`a`.`project_id` AS `project_id`,`a`.`pos_id` AS `pos_id`,`a`.`invoice_date` AS `invoice_date`,`a`.`cashier` AS `cashier`,`a`.`line_count` AS `line_count`,`a`.`total` AS `total`,`b`.`line_number` AS `line_number`,`b`.`item` AS `item`,`b`.`seller_id` AS `seller_id`,`b`.`item_id` AS `item_id`,`b`.`price` AS `price` from (`view_invoice_header` `a` left join `invoice_details` `b` on((`a`.`invoice_number` = `b`.`invoice_number`)));
  172. -- --------------------------------------------------------
  173. --
  174. -- Struktur des Views `view_invoice_header`
  175. --
  176. DROP TABLE IF EXISTS `view_invoice_header`;
  177. CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `view_invoice_header` AS select `a`.`invoice_number` AS `invoice_number`,`a`.`project_id` AS `project_id`,`a`.`pos_id` AS `pos_id`,`a`.`invoice_date` AS `invoice_date`,`a`.`cashier` AS `cashier`,`a`.`paid` AS `paid`,`a`.`checkout` AS `checkout`,`a`.`printed` AS `printed`,`b`.`line_count` AS `line_count`,`b`.`total` AS `total`,`a`.`mdate` AS `mdate`,`a`.`cdate` AS `cdate` from (`invoice_header` `a` left join `view_totals` `b` on((`a`.`invoice_number` = `b`.`invoice_number`)));
  178. -- --------------------------------------------------------
  179. --
  180. -- Struktur des Views `view_totals`
  181. --
  182. DROP TABLE IF EXISTS `view_totals`;
  183. CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `view_totals` AS select `a`.`invoice_number` AS `invoice_number`,count(`a`.`line_number`) AS `line_count`,sum(`a`.`price`) AS `total` from `invoice_details` `a` group by `a`.`invoice_number`;
  184. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  185. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  186. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;