959b0b6609608e0d8f30dd3265c2fd4451462701
[order_line_extra.git] / includes / order_lines.inc
1 <?php
2 include_once($path_to_root."/includes/ui/ui_input.inc");
3 /* This utility function remove beginning <td> and </td> from a string
4  * generated by the above *_cell function.
5  * This is usefull to use the result of the function within a pager
6  * which already include the <td>...</td>
7  * However, for function which doesn't return a string
8  * but echo, we need to capture the output of the echo first.
9  */
10 function start_extract_cell() {
11         // We need 
12         ob_start();
13 }
14
15 function end_extract_cell() {
16         $content = ob_get_contents();
17         ob_end_clean();
18         return extract_cell($content);
19 }
20
21 function extract_cell($td) {
22         if(preg_match('/\s*<td>(.*)<\/td>\s*/s', $td, $matches)) {
23                 return $matches[1];
24         }
25         else {
26 print_r('cacou');
27                 return $td;
28         }
29 }
30
31
32 function update_extra_order_details() {
33         if(!isset($_POST['Update']) || $_POST['Update'] != 'Update')  return;
34
35 begin_transaction();
36         // update in database all field
37         foreach($_POST['detail'] as $detail_id => $values) {
38                 $set = array();
39                 if($comment = $values['comment'])  array_push($set, " comment='$comment' ");
40                 if(isset($values['required_date'])) {
41                         $required_date = trim($values['required_date']);
42                         if($required_date == "")  {
43                                 array_push($set," required_date = NULL");
44                         } else {
45                                 $date = date2sql($required_date);
46                                 array_push($set," required_date='$date' ");
47                         }
48                 }
49
50                 if(!empty($set))  {
51                         $sql = "UPDATE ".TB_PREF."sales_order_details  SET ".implode($set,', ')."  WHERE id = $detail_id ";
52                         
53                         if(!db_query($sql)) {
54                                 display_error('Problem while updating order details. Try again');
55                                 cancel_transaction();
56                                 return;
57                         }
58                 }
59         
60         }
61
62         display_notification('Order details updated');
63
64 }
65
66 function compute_input_name($row, $field) {
67         $row_id = $row['id'];
68         return "detail[$row_id][$field]";
69 }
70
71 function view_link($dummy, $order_no)
72 {
73         return  get_customer_trans_view_str(ST_SALESORDER, $order_no);
74 }
75
76
77 function order_link($row)
78 {
79   return pager_link( _("Sales Order"),
80         "/sales/sales_order_entry.php?NewQuoteToSalesOrder=" .$row['order_no'], ICON_DOC);
81 }
82
83 function customer_link($row) {
84         return pager_link(_($row['debtor_ref']), "/modules/order_line_extra/order_lines_view.php?customer_id=${row['debtor_no']}");
85         
86 }
87
88 function aggregate_comment($row) {
89         $comment =  $row['order_comment'].$row['detail_comment'];
90         if($comment) {
91                 $comments = array_map('trim', explode(';', $comment));
92                 $comments = array_filter($comments);
93                 $first = array_shift($comments);
94                 if(count($comments) == 0)
95                         return $first;
96                 else {
97                         $tooltip = implode('<br>', $comments);
98                         return "$first <span class='before-tooltip'>more</span><span class='tooltip'>&nbsp$tooltip</span>";
99                 }
100         }
101         return '';
102 }
103
104 function input_date_details($row, $date) {
105 $row_id = $row['id'];
106         $name = compute_input_name($row, 'required_date');
107
108 $_POST[$name] = sql2date($date);
109
110         start_extract_cell();
111                 date_cells (null, $name, 'title', null, 0,0,1001);
112         return end_extract_cell();
113
114
115         return "
116 <input type='text' value='$date' name='$name'>
117 ";
118 }
119
120 function input_comment_details($row, $comment) {
121 $row_id = $row['id'];
122         return "
123 <input type='text' value='$comment' name='detail[$row_id][comment]'>
124 ";
125 }
126
127 function get_order_details_extra($customer_id) {
128         $sql = "SELECT sod.id
129         , so.order_no
130         , stk_code
131         , quantity - qty_sent
132         , required_date
133         ,comment
134         FROM ".TB_PREF."sales_order_details sod
135         JOIN ".TB_PREF."sales_orders so ON (so.order_no = sod.order_no
136                 AND so.trans_type = sod.trans_type
137                 AND so.trans_type = ".ST_SALESORDER."
138                 AND so.debtor_no = $customer_id
139         )
140         WHERE quantity > qty_sent
141         ";
142
143         return $sql;
144 }
145
146 function get_order_summary() {
147         $sql = "SELECT debtor_no, debtor_ref, branch_ref
148         , min(delivery_date)
149         , sum(quantity - qty_sent) as quantity
150         , sum((quantity - qty_sent)*unit_price*(1-discount_percent/100)) as amount
151         , min(required_date)
152         , group_concat(distinct comments separator ';') as order_comment
153         , group_concat(distinct comment separator ';') as detail_comment
154         FROM ".TB_PREF."sales_order_details sod
155         JOIN ".TB_PREF."sales_orders so ON (so.order_no = sod.order_no
156                 AND so.trans_type = sod.trans_type
157                 AND so.trans_type = ".ST_SALESORDER."
158         )
159         NATURAL JOIN ".TB_PREF."debtors_master
160         NATURAL JOIN ".TB_PREF."cust_branch
161         WHERE quantity > qty_sent AND ".ST_SALESORDER."
162         GROUP BY debtor_no, branch_code
163         ";
164
165         return $sql;
166 }
167 ?>