Propagate summary to headline
[infodrom.org/service.infodrom.org] / class / sales.class.php
1 <?php
2
3 class Sales extends DatabaseTable {
4
5   public function __construct($id=false)
6   {
7     $this->idcolumn = 'nr';
8     parent::__construct('sales', $id);
9   }
10
11   public function getOpenItems($from=false, $to=false)
12   {
13       $sql = "SELECT nr,date,description,price * 100 AS price FROM sales WHERE paid = 0 AND visible = 1 ORDER BY date,nr";
14       return $this->db->fetchObjectList($sql);
15   }
16
17   public function ajaxSubtotal()
18   {
19
20       $text = '';
21       $commands = '';
22       $total = 0;
23
24       foreach ($_POST['nr'] as &$nr)
25           $nr = intval($nr);
26
27       $sql = sprintf("SELECT nr,date,description,price * 100 AS price FROM sales WHERE nr IN (%s) ORDER BY date,nr",
28                      implode(', ', $_POST['nr']));
29
30       foreach ($this->db->fetchObjectList($sql) as $row) {
31           $date = substr ($row->date,6,2) . "." . substr ($row->date,4,2) . "." . substr ($row->date,0,4);
32           $text .= utf8_encode(sprintf("%d %s %-53s %8.2f\n", $row->nr, $date, substr($row->description,0,53), $row->price / 100));
33           $commands .= sprintf("infocon --date %s --pay %d\n", date('Y-m-d', time()+60*60*24), $row->nr);
34           $total += $row->price;
35       }
36
37       if ($total != 0) {
38           $subject = 'Erstattungen';
39           if (strlen($_POST['title']))
40               $subject .= ' ' . $_POST['title'];
41
42           $text = "Liste der Buchungen\n" . str_repeat('=', 78) . "\n" . $text;
43           $text .= str_repeat('=', 78) . sprintf("\n%-69s %8.2f\n", 'Zwischensumme', $total / 100);
44
45           $mail = new Mail();
46           $mail->env_from(MAIL_FROM);
47           $mail->set('From', mb_encode_mimeheader(utf8_decode(sprintf("%s <%s>", MAIL_FROM_NAME, MAIL_FROM)),'latin1'));
48           $mail->set('To', MAIL_ERROR);
49           $mail->set('Subject', mb_encode_mimeheader($subject,'latin1'));
50           $mail->send($text . "\n\n" . $commands);
51       }
52
53       return true;
54   }
55
56   public function setPaid()
57   {
58     return $this->modify('paid', 1);
59   }
60
61   public function unsetPaid()
62   {
63     return $this->modify('paid', 0);
64   }
65
66   public function ajaxEditDescription(Array $data)
67   {
68       return $this->modify('description', utf8_decode($data['content']));
69   }
70
71 }
72