blob: cbc45e6779af67c5fb009d3acfbc7384914c614b [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 Kupietz8b80c7a2023-03-28 21:41:39 +020015 global $FULL_VAT, $SERVICE_ACRONYM, $SERVICE_NAME, $SERVICE_LOGO, $REGULAR_CONFERENCE_FEE, $EARLYBIRD_CONFERENCE_FEE, $STUDENT_DISCOUNT, $CONFERENCE_DINNER, $LUNCH, $EXCURSION;
Marc Kupietz7081be92023-03-20 19:46:55 +010016 $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";
Marc Kupietz144d82e2023-03-26 15:55:42 +020028 $invoice->setTo(['ICLC-conference / Administration', 'Leibniz Institute for the German Language', 'R5 6-13', '68181 Mannheim', 'Germany']);
29 $invoice->setFrom([($user->title? $user->title . ' ' : ''). $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 Kupietz8b80c7a2023-03-28 21:41:39 +020039 $invoice->addItem('Conference Dinner' . ($user->vegetarian_dinner ? " (vegetarian option)" : ""), 'The conference dinner takes 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
Marc Kupietz8b80c7a2023-03-28 21:41:39 +020072 if ($user->excursion) {
73 $vat_sum += $EXCURSION * $FULL_VAT;
74 $invoice->addItem('Excursion', 'The excursion takes place on the afternoon 21 July.', 1, false, $EXCURSION, $EXCURSION * $FULL_VAT, $EXCURSION);
75 }
76
Marc Kupietza104b602023-03-20 21:29:34 +010077 /* Add totals */
78 $invoice->addTotal('Gross', $user->total_due);
79
80 if ($vat_sum > 0) {
81 $invoice->addTotal('incl. VAT', $vat_sum, false);
82 }
Marc Kupietz49f677c2023-03-10 08:29:41 +010083 $invoice->addTotal('Total due', $user->total_due, true);
Marc Kupietzb411f462023-03-09 08:21:11 +010084
Marc Kupietz49f677c2023-03-10 08:29:41 +010085 $invoice->addTitle("Payment Details");
Marc Kupietzb411f462023-03-09 08:21:11 +010086
Marc Kupietz81065d32023-03-10 13:54:21 +010087 $invoice->addParagraph("Please transfer the total amount due to our account: ");
Marc Kupietz49f677c2023-03-10 08:29:41 +010088
89 $invoice->addParagraph("Leibniz-Institute for the German Language
Marc Kupietzb411f462023-03-09 08:21:11 +010090IBAN: DE70 6708 0050 0694 9411 00
91BIC: DRESDEFF670
92Commerzbank Mannheim
Marc Kupietz49f677c2023-03-10 08:29:41 +010093Reference: ICLC-10-" . $user->id . "
Marc Kupietz728885c2023-03-20 19:45:34 +010094
Marc Kupietz42f0c8f2023-03-20 19:47:25 +010095If you have any questions about this invoice, please contact us via buchhaltung@ids-mannheim.de.
Marc Kupietzb411f462023-03-09 08:21:11 +010096");
Marc Kupietz144d82e2023-03-26 15:55:42 +020097 $invoice->setFooterNote("Leibniz Institute for the German Language, Civil Law Foundation, VAT ID: DE 143 845 359");
Marc Kupietz49f677c2023-03-10 08:29:41 +010098
99 /* Render */
Marc Kupietz49f677c2023-03-10 08:29:41 +0100100 $ret = $invoice->render('example4.pdf', 'S'); /* I => Display on browser, D => Force Download, F => local path save, S => return document path */
101 return $ret;
102}
103
104/*
105$user = new User();
106$user->id = 107;
107$user->first_name = "John";
108$user->last_name = "Урсула";
109$user->organization = "Урсула ACME Inc.";
110$user->street = "123 Main St.";
111$user->zip = "12345";
112$user->city = "Mannheim";
113$user->country = "Germany";
Marc Kupietze9bcbc02023-03-20 21:29:59 +0100114$user->total_due = 285.0;
Marc Kupietz49f677c2023-03-10 08:29:41 +0100115$user->student = true;
Marc Kupietz7081be92023-03-20 19:46:55 +0100116$user->lunch_day_1 = "vegan";
117$user->lunch_day_2 = "non-vegetarian";
Marc Kupietz49f677c2023-03-10 08:29:41 +0100118$user->conference_dinner = true;
119create_invoice($user);
120*/
121?>