create.sql 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. -- phpMyAdmin SQL Dump
  2. -- version 3.4.5
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Erstellungszeit: 22. Jun 2022 um 20:12
  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. `printed` tinyint(4) NOT NULL DEFAULT '0',
  49. `mdate` datetime NOT NULL,
  50. `cdate` datetime NOT NULL,
  51. PRIMARY KEY (`invoice_number`)
  52. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2477 ;
  53. -- --------------------------------------------------------
  54. --
  55. -- Tabellenstruktur für Tabelle `items`
  56. --
  57. DROP TABLE IF EXISTS `items`;
  58. CREATE TABLE IF NOT EXISTS `items` (
  59. `project_id` int(11) NOT NULL,
  60. `seller_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  61. `item_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  62. `description` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  63. `price` decimal(6,2) NOT NULL,
  64. `mdate` datetime NOT NULL,
  65. `cdate` datetime NOT NULL
  66. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  67. -- --------------------------------------------------------
  68. --
  69. -- Tabellenstruktur für Tabelle `pos`
  70. --
  71. DROP TABLE IF EXISTS `pos`;
  72. CREATE TABLE IF NOT EXISTS `pos` (
  73. `pos_id` int(11) NOT NULL,
  74. `token` int(11) NOT NULL,
  75. `active` tinyint(4) NOT NULL,
  76. `disabled` tinyint(4) NOT NULL,
  77. `cashier_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  78. `mdate` datetime NOT NULL,
  79. `cdate` datetime NOT NULL,
  80. PRIMARY KEY (`pos_id`)
  81. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  82. -- --------------------------------------------------------
  83. --
  84. -- Tabellenstruktur für Tabelle `projects`
  85. --
  86. DROP TABLE IF EXISTS `projects`;
  87. CREATE TABLE IF NOT EXISTS `projects` (
  88. `project_id` int(11) NOT NULL AUTO_INCREMENT,
  89. `event_date` date NOT NULL,
  90. `event_location` varchar(255) NOT NULL,
  91. `print_header` text NOT NULL,
  92. `print_footer` text NOT NULL,
  93. `active` tinyint(4) NOT NULL DEFAULT '0',
  94. `mdate` datetime NOT NULL,
  95. `cdate` datetime NOT NULL,
  96. PRIMARY KEY (`project_id`)
  97. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;
  98. -- --------------------------------------------------------
  99. --
  100. -- Tabellenstruktur für Tabelle `sellers`
  101. --
  102. DROP TABLE IF EXISTS `sellers`;
  103. CREATE TABLE IF NOT EXISTS `sellers` (
  104. `project_id` int(11) NOT NULL DEFAULT '1',
  105. `seller_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  106. `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  107. `first_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  108. `address` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  109. `zip_code` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  110. `place` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  111. `mail` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  112. `phone` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  113. `mdate` datetime NOT NULL,
  114. `cdate` datetime NOT NULL,
  115. PRIMARY KEY (`project_id`,`seller_id`)
  116. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  117. -- --------------------------------------------------------
  118. --
  119. -- Stellvertreter-Struktur des Views `view_invoices`
  120. --
  121. DROP VIEW IF EXISTS `view_invoices`;
  122. CREATE TABLE IF NOT EXISTS `view_invoices` (
  123. `invoice_number` int(11)
  124. ,`project_id` int(11)
  125. ,`pos_id` int(11)
  126. ,`invoice_date` datetime
  127. ,`cashier` varchar(30)
  128. ,`line_count` bigint(21)
  129. ,`total` decimal(28,2)
  130. ,`line_number` int(11)
  131. ,`item` varchar(10)
  132. ,`seller_id` varchar(5)
  133. ,`item_id` varchar(5)
  134. ,`price` decimal(6,2)
  135. );
  136. -- --------------------------------------------------------
  137. --
  138. -- Stellvertreter-Struktur des Views `view_invoice_header`
  139. --
  140. DROP VIEW IF EXISTS `view_invoice_header`;
  141. CREATE TABLE IF NOT EXISTS `view_invoice_header` (
  142. `invoice_number` int(11)
  143. ,`project_id` int(11)
  144. ,`pos_id` int(11)
  145. ,`invoice_date` datetime
  146. ,`cashier` varchar(30)
  147. ,`paid` decimal(6,2)
  148. ,`printed` tinyint(4)
  149. ,`line_count` bigint(21)
  150. ,`total` decimal(28,2)
  151. ,`mdate` datetime
  152. ,`cdate` datetime
  153. );
  154. -- --------------------------------------------------------
  155. --
  156. -- Stellvertreter-Struktur des Views `view_totals`
  157. --
  158. DROP VIEW IF EXISTS `view_totals`;
  159. CREATE TABLE IF NOT EXISTS `view_totals` (
  160. `invoice_number` int(11)
  161. ,`line_count` bigint(21)
  162. ,`total` decimal(28,2)
  163. );
  164. -- --------------------------------------------------------
  165. --
  166. -- Struktur des Views `view_invoices`
  167. --
  168. DROP TABLE IF EXISTS `view_invoices`;
  169. 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`)));
  170. -- --------------------------------------------------------
  171. --
  172. -- Struktur des Views `view_invoice_header`
  173. --
  174. DROP TABLE IF EXISTS `view_invoice_header`;
  175. 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`.`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`)));
  176. -- --------------------------------------------------------
  177. --
  178. -- Struktur des Views `view_totals`
  179. --
  180. DROP TABLE IF EXISTS `view_totals`;
  181. 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`;
  182. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  183. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  184. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;