| Marc Kupietz | b411f46 | 2023-03-09 08:21:11 +0100 | [diff] [blame] | 1 | <?php | 
 | 2 |  | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 3 | include_once 'User.php'; | 
 | 4 | use \User as User; | 
 | 5 |  | 
 | 6 | require 'vendor/autoload.php'; | 
| Marc Kupietz | b411f46 | 2023-03-09 08:21:11 +0100 | [diff] [blame] | 7 |  | 
 | 8 | use Konekt\PdfInvoice\InvoicePrinter; | 
 | 9 |  | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 10 | #include_once '../src/InvoicePrinter.php'; | 
 | 11 | include 'config.php'; | 
| Marc Kupietz | 7081be9 | 2023-03-20 19:46:55 +0100 | [diff] [blame] | 12 | $FULL_VAT=0.19; | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 13 | function create_invoice(User $user) | 
 | 14 | { | 
| Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 15 |     global $FULL_VAT, $SERVICE_ACRONYM, $SERVICE_NAME, $SERVICE_LOGO, $REGULAR_CONFERENCE_FEE, $EARLYBIRD_CONFERENCE_FEE, $STUDENT_DISCOUNT, $CONFERENCE_DINNER, $LUNCH, $EXCURSION; | 
| Marc Kupietz | 7081be9 | 2023-03-20 19:46:55 +0100 | [diff] [blame] | 16 |     $vat_sum = 0; | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 17 |     $invoice = new InvoicePrinter("A4", "€", "en"); | 
 | 18 |     $invoice->lang['product'] = "Item"; | 
| Marc Kupietz | 7081be9 | 2023-03-20 19:46:55 +0100 | [diff] [blame] | 19 |     $invoice->lang['discount'] = "VAT " . $FULL_VAT * 100 . "%"; | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 20 |     /* 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 Kupietz | 17b2e5f | 2023-04-01 17:51:48 +0200 | [diff] [blame] | 26 |     $invoice->flipflop(); | 
 | 27 |     $invoice->lang['to'] = "to"; | 
 | 28 |     $invoice->lang['from'] = "from"; | 
 | 29 |     $invoice->setFrom(['ICLC-conference / Administration', 'Leibniz Institute for the German Language', 'R5 6-13', '68181 Mannheim', 'Germany']); | 
 | 30 |     $invoice->setTo([($user->title? $user->title . ' ' : ''). $user->first_name . ' ' . $user->last_name, $user->organization, $user->street, $user->zip . ' ' . $user->city, $user->country]); | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 31 |     $invoice->setDue(date('Y-m-d', strtotime('+2 weeks'))); | 
 | 32 |     // $invoice->hide_tofrom(); | 
 | 33 |     /* Adding Items in table */ | 
 | 34 |     if ($user->earlybird_registration) { | 
 | 35 |         $invoice->addItem( $SERVICE_ACRONYM . ' Early Bird Registration', $SERVICE_NAME, 1, false, $EARLYBIRD_CONFERENCE_FEE, false, $EARLYBIRD_CONFERENCE_FEE); | 
 | 36 |     } else | 
 | 37 |         $invoice->addItem( $SERVICE_ACRONYM . ' Registration', $SERVICE_NAME, 1, false, $REGULAR_CONFERENCE_FEE, false, $REGULAR_CONFERENCE_FEE); | 
| Marc Kupietz | 7081be9 | 2023-03-20 19:46:55 +0100 | [diff] [blame] | 38 |     if($user->student) $invoice->addItem('Student Discount', 'Student discount', 1, false, - $STUDENT_DISCOUNT, false, -$STUDENT_DISCOUNT); | 
 | 39 |     if($user->conference_dinner)  { | 
| Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 40 |         $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 Kupietz | 7081be9 | 2023-03-20 19:46:55 +0100 | [diff] [blame] | 41 |         $vat_sum += $CONFERENCE_DINNER * $FULL_VAT; | 
 | 42 |     } | 
| Marc Kupietz | 79eaa0b | 2023-03-16 17:33:43 +0100 | [diff] [blame] | 43 |     $lunch_count = 0; | 
 | 44 |     $lunch_details = ""; | 
 | 45 |     $i = 0; | 
| Marc Kupietz | 487abfe | 2023-04-15 14:00:56 +0200 | [diff] [blame^] | 46 |     if ($user->lunch_day_1 && $user->lunch_day_1 != "--") { | 
| Marc Kupietz | 79eaa0b | 2023-03-16 17:33:43 +0100 | [diff] [blame] | 47 |         if ($i > 0) | 
 | 48 |             $lunch_details .= ", "; | 
 | 49 |         $lunch_count++; | 
 | 50 |         $lunch_details .= "Day 1: " . $user->lunch_day_1; | 
 | 51 |         $i++; | 
 | 52 |     } | 
| Marc Kupietz | 487abfe | 2023-04-15 14:00:56 +0200 | [diff] [blame^] | 53 |     if ($user->lunch_day_2 && $user->lunch_day_2 != "--") { | 
| Marc Kupietz | 79eaa0b | 2023-03-16 17:33:43 +0100 | [diff] [blame] | 54 |         if ($i > 0) | 
 | 55 |             $lunch_details .= ", "; | 
 | 56 |         $lunch_count++; | 
 | 57 |         $lunch_details .= "Day 2: " . $user->lunch_day_2; | 
 | 58 |         $i++; | 
 | 59 |     } | 
| Marc Kupietz | 487abfe | 2023-04-15 14:00:56 +0200 | [diff] [blame^] | 60 |     if ($user->lunch_day_3 && $user->lunch_day_3 != "--") { | 
| Marc Kupietz | 79eaa0b | 2023-03-16 17:33:43 +0100 | [diff] [blame] | 61 |         if ($i > 0) | 
 | 62 |             $lunch_details .= ", "; | 
 | 63 |         $lunch_count++; | 
 | 64 |         $lunch_details .= "Day 3: " . $user->lunch_day_3; | 
 | 65 |         $i++; | 
 | 66 |     } | 
| Marc Kupietz | 7081be9 | 2023-03-20 19:46:55 +0100 | [diff] [blame] | 67 |     $vat_sum += $lunch_count * $LUNCH * $FULL_VAT; | 
| Marc Kupietz | 79eaa0b | 2023-03-16 17:33:43 +0100 | [diff] [blame] | 68 |  | 
 | 69 |     if ($lunch_count > 0) | 
| Marc Kupietz | 7081be9 | 2023-03-20 19:46:55 +0100 | [diff] [blame] | 70 |         $invoice->addItem('Lunch', $lunch_details, $lunch_count, false, $LUNCH, $lunch_count * $LUNCH * $FULL_VAT, $lunch_count * $LUNCH); | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 71 |     // $invoice->addTotal('Discount', $STUDENT_DISCOUNT); | 
| Marc Kupietz | a104b60 | 2023-03-20 21:29:34 +0100 | [diff] [blame] | 72 |  | 
| Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 73 |     if ($user->excursion) { | 
 | 74 |         $vat_sum += $EXCURSION * $FULL_VAT; | 
| Marc Kupietz | 7c7b7a7 | 2023-04-14 18:16:34 +0200 | [diff] [blame] | 75 |         $invoice->addItem('Guided City Walk', 'The Guided City Walk takes place in the late afternoon of 21 July.', 1, false, $EXCURSION, $EXCURSION * $FULL_VAT, $EXCURSION); | 
| Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 76 |     } | 
 | 77 |  | 
| Marc Kupietz | a104b60 | 2023-03-20 21:29:34 +0100 | [diff] [blame] | 78 |     /* Add totals */ | 
 | 79 |     $invoice->addTotal('Gross', $user->total_due); | 
 | 80 |  | 
 | 81 |     if ($vat_sum > 0) { | 
 | 82 |         $invoice->addTotal('incl. VAT', $vat_sum, false); | 
 | 83 |     } | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 84 |     $invoice->addTotal('Total due', $user->total_due, true); | 
| Marc Kupietz | b411f46 | 2023-03-09 08:21:11 +0100 | [diff] [blame] | 85 |  | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 86 |     $invoice->addTitle("Payment Details"); | 
| Marc Kupietz | b411f46 | 2023-03-09 08:21:11 +0100 | [diff] [blame] | 87 |  | 
| Marc Kupietz | 81065d3 | 2023-03-10 13:54:21 +0100 | [diff] [blame] | 88 |     $invoice->addParagraph("Please transfer the total amount due to our account: "); | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 89 |  | 
 | 90 |     $invoice->addParagraph("Leibniz-Institute for the German Language | 
| Marc Kupietz | b411f46 | 2023-03-09 08:21:11 +0100 | [diff] [blame] | 91 | IBAN: DE70 6708 0050 0694 9411 00 | 
 | 92 | BIC: DRESDEFF670 | 
 | 93 | Commerzbank Mannheim | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 94 | Reference: ICLC-10-" . $user->id . " | 
| Marc Kupietz | 728885c | 2023-03-20 19:45:34 +0100 | [diff] [blame] | 95 |  | 
| Marc Kupietz | 42f0c8f | 2023-03-20 19:47:25 +0100 | [diff] [blame] | 96 | If you have any questions about this invoice, please contact us via buchhaltung@ids-mannheim.de. | 
| Marc Kupietz | b411f46 | 2023-03-09 08:21:11 +0100 | [diff] [blame] | 97 | "); | 
| Marc Kupietz | 144d82e | 2023-03-26 15:55:42 +0200 | [diff] [blame] | 98 |     $invoice->setFooterNote("Leibniz Institute for the German Language, Civil Law Foundation, VAT ID: DE 143 845 359"); | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 99 |  | 
 | 100 |     /* Render */ | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 101 |     $ret = $invoice->render('example4.pdf', 'S'); /* I => Display on browser, D => Force Download, F => local path save, S => return document path */ | 
 | 102 |     return $ret; | 
 | 103 | } | 
 | 104 |  | 
 | 105 | /* | 
 | 106 | $user = new User(); | 
 | 107 | $user->id = 107; | 
 | 108 | $user->first_name = "John"; | 
 | 109 | $user->last_name = "Урсула"; | 
 | 110 | $user->organization = "Урсула ACME Inc."; | 
 | 111 | $user->street = "123 Main St."; | 
 | 112 | $user->zip = "12345"; | 
 | 113 | $user->city = "Mannheim"; | 
 | 114 | $user->country = "Germany"; | 
| Marc Kupietz | e9bcbc0 | 2023-03-20 21:29:59 +0100 | [diff] [blame] | 115 | $user->total_due = 285.0; | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 116 | $user->student = true; | 
| Marc Kupietz | 7081be9 | 2023-03-20 19:46:55 +0100 | [diff] [blame] | 117 | $user->lunch_day_1 = "vegan"; | 
 | 118 | $user->lunch_day_2 = "non-vegetarian"; | 
| Marc Kupietz | 49f677c | 2023-03-10 08:29:41 +0100 | [diff] [blame] | 119 | $user->conference_dinner = true; | 
 | 120 | create_invoice($user); | 
 | 121 | */ | 
 | 122 | ?> |