blob: 3b7379939a6ccfb0311ec4531d4f070761f97874 [file] [log] [blame]
Marc Kupietzb411f462023-03-09 08:21:11 +01001<?php
2
Marc Kupietz49f677c2023-03-10 08:29:41 +01003include_once 'User.php';
4use \User as User;
5
6require 'vendor/autoload.php';
Marc Kupietzb411f462023-03-09 08:21:11 +01007
8use Konekt\PdfInvoice\InvoicePrinter;
9
Marc Kupietz49f677c2023-03-10 08:29:41 +010010#include_once '../src/InvoicePrinter.php';
11include 'config.php';
Marc Kupietz7081be92023-03-20 19:46:55 +010012$FULL_VAT=0.19;
Marc Kupietz49f677c2023-03-10 08:29:41 +010013function create_invoice(User $user)
14{
Marc Kupietz7081be92023-03-20 19:46:55 +010015 global $FULL_VAT, $SERVICE_ACRONYM, $SERVICE_NAME, $SERVICE_LOGO, $REGULAR_CONFERENCE_FEE, $EARLYBIRD_CONFERENCE_FEE, $STUDENT_DISCOUNT, $CONFERENCE_DINNER, $LUNCH;
16 $vat_sum = 0;
Marc Kupietz49f677c2023-03-10 08:29:41 +010017 $invoice = new InvoicePrinter("A4", "€", "en");
18 $invoice->lang['product'] = "Item";
Marc Kupietz7081be92023-03-20 19:46:55 +010019 $invoice->lang['discount'] = "VAT " . $FULL_VAT * 100 . "%";
Marc Kupietz49f677c2023-03-10 08:29:41 +010020 /* Header Settings */
21 $invoice->setLogo(str_replace(".svg", ".png", $SERVICE_LOGO));
22 $invoice->setColor('#4bb044');
23 $invoice->setType('Invoice');
24 $invoice->setReference('ICLC-10-' . $user->id);
25 $invoice->setDate(date('Y-m-d', time()));
Marc Kupietzab9a57a2023-03-20 21:28:00 +010026 $invoice->lang['to'] = "billing from";
27 $invoice->lang['from'] = "billing to";
28 $invoice->setTo(['ICLC-conference / Administration', 'Leibniz-Institute for the German Language', 'R5 6-13', '68181 Mannheim', 'Germany']);
29 $invoice->setFrom([$user->first_name . ' ' . $user->last_name, $user->organization, $user->street, $user->zip . ' ' . $user->city, $user->country]);
Marc Kupietz49f677c2023-03-10 08:29:41 +010030 $invoice->setDue(date('Y-m-d', strtotime('+2 weeks')));
31 // $invoice->hide_tofrom();
32 /* Adding Items in table */
33 if ($user->earlybird_registration) {
34 $invoice->addItem( $SERVICE_ACRONYM . ' Early Bird Registration', $SERVICE_NAME, 1, false, $EARLYBIRD_CONFERENCE_FEE, false, $EARLYBIRD_CONFERENCE_FEE);
35 } else
36 $invoice->addItem( $SERVICE_ACRONYM . ' Registration', $SERVICE_NAME, 1, false, $REGULAR_CONFERENCE_FEE, false, $REGULAR_CONFERENCE_FEE);
Marc Kupietz7081be92023-03-20 19:46:55 +010037 if($user->student) $invoice->addItem('Student Discount', 'Student discount', 1, false, - $STUDENT_DISCOUNT, false, -$STUDENT_DISCOUNT);
38 if($user->conference_dinner) {
Marc Kupietz0dbe6b62023-03-21 17:58:11 +010039 $invoice->addItem('Conference Dinner' . ($user->vegetarian_dinner ? " (vegetarian option)" : ""), 'The conference dinner will take place on 20 July.', 1, false, $CONFERENCE_DINNER, $CONFERENCE_DINNER * $FULL_VAT, $CONFERENCE_DINNER);
Marc Kupietz7081be92023-03-20 19:46:55 +010040 $vat_sum += $CONFERENCE_DINNER * $FULL_VAT;
41 }
Marc Kupietz79eaa0b2023-03-16 17:33:43 +010042 $lunch_count = 0;
43 $lunch_details = "";
44 $i = 0;
45 if ($user->lunch_day_1) {
46 if ($i > 0)
47 $lunch_details .= ", ";
48 $lunch_count++;
49 $lunch_details .= "Day 1: " . $user->lunch_day_1;
50 $i++;
51 }
52 if ($user->lunch_day_2) {
53 if ($i > 0)
54 $lunch_details .= ", ";
55 $lunch_count++;
56 $lunch_details .= "Day 2: " . $user->lunch_day_2;
57 $i++;
58 }
59 if ($user->lunch_day_3) {
60 if ($i > 0)
61 $lunch_details .= ", ";
62 $lunch_count++;
63 $lunch_details .= "Day 3: " . $user->lunch_day_3;
64 $i++;
65 }
Marc Kupietz7081be92023-03-20 19:46:55 +010066 $vat_sum += $lunch_count * $LUNCH * $FULL_VAT;
Marc Kupietz79eaa0b2023-03-16 17:33:43 +010067
68 if ($lunch_count > 0)
Marc Kupietz7081be92023-03-20 19:46:55 +010069 $invoice->addItem('Lunch', $lunch_details, $lunch_count, false, $LUNCH, $lunch_count * $LUNCH * $FULL_VAT, $lunch_count * $LUNCH);
Marc Kupietz49f677c2023-03-10 08:29:41 +010070 // $invoice->addTotal('Discount', $STUDENT_DISCOUNT);
Marc Kupietza104b602023-03-20 21:29:34 +010071
72 /* Add totals */
73 $invoice->addTotal('Gross', $user->total_due);
74
75 if ($vat_sum > 0) {
76 $invoice->addTotal('incl. VAT', $vat_sum, false);
77 }
Marc Kupietz49f677c2023-03-10 08:29:41 +010078 $invoice->addTotal('Total due', $user->total_due, true);
Marc Kupietzb411f462023-03-09 08:21:11 +010079
Marc Kupietz49f677c2023-03-10 08:29:41 +010080 $invoice->addTitle("Payment Details");
Marc Kupietzb411f462023-03-09 08:21:11 +010081
Marc Kupietz81065d32023-03-10 13:54:21 +010082 $invoice->addParagraph("Please transfer the total amount due to our account: ");
Marc Kupietz49f677c2023-03-10 08:29:41 +010083
84 $invoice->addParagraph("Leibniz-Institute for the German Language
Marc Kupietzb411f462023-03-09 08:21:11 +010085IBAN: DE70 6708 0050 0694 9411 00
86BIC: DRESDEFF670
87Commerzbank Mannheim
Marc Kupietz49f677c2023-03-10 08:29:41 +010088Reference: ICLC-10-" . $user->id . "
Marc Kupietz728885c2023-03-20 19:45:34 +010089
Marc Kupietz42f0c8f2023-03-20 19:47:25 +010090If you have any questions about this invoice, please contact us via buchhaltung@ids-mannheim.de.
Marc Kupietzb411f462023-03-09 08:21:11 +010091");
Marc Kupietzd3ebf562023-03-20 21:28:41 +010092 $invoice->setFooterNote("Leibniz-Institute for the German Language, Civil Law Foundation, VAT ID: DE 143 845 359");
Marc Kupietz49f677c2023-03-10 08:29:41 +010093
94 /* Render */
Marc Kupietz49f677c2023-03-10 08:29:41 +010095 $ret = $invoice->render('example4.pdf', 'S'); /* I => Display on browser, D => Force Download, F => local path save, S => return document path */
96 return $ret;
97}
98
99/*
100$user = new User();
101$user->id = 107;
102$user->first_name = "John";
103$user->last_name = "Урсула";
104$user->organization = "Урсула ACME Inc.";
105$user->street = "123 Main St.";
106$user->zip = "12345";
107$user->city = "Mannheim";
108$user->country = "Germany";
Marc Kupietze9bcbc02023-03-20 21:29:59 +0100109$user->total_due = 285.0;
Marc Kupietz49f677c2023-03-10 08:29:41 +0100110$user->student = true;
Marc Kupietz7081be92023-03-20 19:46:55 +0100111$user->lunch_day_1 = "vegan";
112$user->lunch_day_2 = "non-vegetarian";
Marc Kupietz49f677c2023-03-10 08:29:41 +0100113$user->conference_dinner = true;
114create_invoice($user);
115*/
116?>