-
Notifications
You must be signed in to change notification settings - Fork 0
/
ordersandshipments.php
313 lines (273 loc) · 9.03 KB
/
ordersandshipments.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<?php
/*
* Copyright (C) 2016 Bruno Généré <bgenere@webiseasy.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file ordersandshipments.php
* \brief Displays products orders and shipments numbers between 2 dates
*
* \ingroup dashboard
*/
@include './tpl/maindolibarr.inc.php';
/* get library */
dol_include_once('/vignoble/lib/ordersandshipments.lib.php');
/* get language files */
$langs->load("vignoble@vignoble");
$langs->load("products");
$langs->load("orders");
$langs->load("sendings");
$langs->load("other");
/* check permissions */
if (! (! empty($conf->product->enabled) && $user->rights->produit->lire)) {
accessforbidden();
}
$sort = getsort();
$filter = getfilter();
$orderlines = fetchProductsOrders($sort, '', '', $filter["orders"], 'AND');
$shipmentlines = fetchProductsShipments($sort, '', '', $filter["shipments"], 'AND');
displayView($orderlines, $shipmentlines, $sort, $filter);
/* close database */
$db->close();
/* Function List */
/**
* Displays the page view
*
* A filter form to select date begin, date end, products.
* Then Orders and Shipment summary by products on 2 columns.
*
* @param array[] $orders the orders summary result set
* @param array[] $shipments the shipments summary result set
* @param array[] $sort sort field and order
* @param array[] $filter the filter parameters
*
*/
function displayView($orders, $shipments, $sort, $filter)
{
global $db, $conf, $langs, $user;
$pagetitle = $langs->trans('Orders') . ' & ' . $langs->trans('Shipments');
llxHeader('', $pagetitle);
print load_fiche_titre($pagetitle, '', 'object_vignoble@vignoble');
displaySearchForm($filter, $sort);
$urlparam = buildSearchParameters($filter);
print '<div class="fichecenter">'; // frame
print '<div class="fichehalfleft">'; // left column
displayTable('Orders', $orders, $sort, $urlparam);
print '</div>'; // left column end
print '<div class="fichehalfright">'; // right column
print '<div class="ficheaddleft">'; // add white space on left
displayTable('Shipments', $shipments, $sort, $urlparam);
print '</div>'; //
print '</div>'; // right column end
print '</div>'; // frame end
llxFooter();
}
/**
* Display the filter Form :
*
* Date begin, date end, products list.
*
* @param array[] $filter the filter parameters
* @param array[] $sort sort field and order
*/
function displaySearchForm($filter, $sort)
{
global $db, $conf, $langs, $user;
$form = new Form($db);
print '<div class="fichecenter">';
print '<form method="post" action="' . DOL_URL_ROOT . '/custom/vignoble/ordersandshipments.php">';
print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
print '<input type="hidden" name="sortfield" value="' . $sort['field'] . '">';
print '<input type="hidden" name="sortorder" value="' . $sort['order'] . '">';
print '<table class="noborder nohover centpercent">';
// Form header
print '<tr class="liste_titre"><td colspan="3">' . $langs->trans("Search") . '</td></tr>';
// Date Begin and Button
print '<tr>';
print '<td class="nowrap"><label for="datebegin">' . $langs->trans("DateStart") . '</label></td>';
print '<td>' . $form->select_date($filter['datebegin'], 'datebegin', 0, 0, 0, "datebegin", 1, 1, 1) . '</td>';
print '<td rowspan="3"><input type="submit" value="' . $langs->trans("Search") . '" class="button"></td>';
print '</tr>';
// Date End
print '<tr>';
print '<td class="nowrap"><label for="dateend">' . $langs->trans("DateEnd") . '</label></td>';
print '<td>' . $form->select_date($filter['dateend'], 'dateend', 0, 0, 0, "dateend", 1, 1, 1) . '</td>';
print '</tr>';
// Products
print '<tr>';
print '<td class="nowrap"><label for="products">' . $langs->trans("Products") . '</label></td>';
print '<td>' . $form->multiselectarray('multiproducts', fetchProducts(), $filter['products'], 1, 0, '', 0, '90%') . '</td>';
print '</tr>';
print '</table>';
print '</form>';
print '<br>';
print '</div>'; // fiche
}
/**
* Display the result table :
*
* Product ref, product label, object count, quantity, amount
*
* @param string $tablename name of the object
* @param array[] $table result set from SQL query
* @param array[] $sort sort field and order
* @param string $urlparam filter parameters as a URL part for field sort
*/
function displayTable($tablename, $table, $sort, $urlparam)
{
global $db, $conf, $langs, $user;
$fields = array(
'Ref' => array(
'align' => 'left',
'label' => 'Reference'
),
'Label' => array(
'align' => 'left',
'label' => 'Label'
),
'totalNumber' => array(
'align' => 'right',
'label' => $tablename
),
'totalQuantity' => array(
'align' => 'right',
'label' => 'Quantity'
),
'totalAmount' => array(
'align' => 'right',
'display' => 'price',
'label' => 'Amount'
)
);
print load_fiche_titre($langs->trans($tablename), '', '');
print '<table class="liste" >';
// Fields title
print '<tr class="liste_titre">';
foreach ($fields as $field => $fieldvalue) {
print print_liste_field_titre($langs->trans($fieldvalue['label']), $_SERVER['PHP_SELF'], $field, '', $urlparam, 'align="' . $fieldvalue['align'] . '"', $sort["field"], $sort["order"]);
}
print '</tr>';
// Table lines
foreach ($table as $line) {
print '<tr>';
foreach ($fields as $field => $fieldvalue) {
print '<td align="' . $fieldvalue['align'] . '">';
if (! empty($fieldvalue['display'])) {
print $fieldvalue['display']($line->$field);
} else {
print $line->$field;
}
print '</td>';
}
print '</tr>';
}
print '</table>';
}
/**
* Get field and order used for the tables sort.
*
* Use Ref Ascending by default.
*
* @return Array[] with keys : field, order.
*/
function getsort()
{
$sortfield = GETPOST(sortfield, 'alpha');
if (empty($sortfield)) {
$sortfield = 'Ref';
}
$sortorder = GETPOST(sortorder, 'alpha');
if (empty($sortorder)) {
$sortorder = 'ASC';
}
return $sort = array(
"field" => $sortfield,
"order" => $sortorder
);
}
/**
* Get all data needed to filter the SQL requests and produce the results
*
* @return Array[] containing the following keys :
* datebegin,
* dateend,
* products (array of selected products),
* orders (array of sql filter conditions for orders),
* shipments (array of sql filter conditions for shipments),
*/
function getfilter()
{
$datebegin = GETPOST("datebeginyear") . '-' . GETPOST("datebeginmonth") . '-' . GETPOST("datebeginday");
if ($datebegin == '--') { // not in Form check URL
$datebegin = GETPOST("datebegin");
}
if (empty($datebegin)) {
$datebegin = date("Y-m-d", strtotime("now - 1 month"));
}
$dateend = GETPOST("dateendyear") . '-' . GETPOST("dateendmonth") . '-' . GETPOST("dateendday");
if ($dateend == '--') { // not in Form check URL
$dateend = GETPOST("dateend");
}
if (empty($dateend)) {
$dateend = date("Y-m-d");
}
$products = GETPOST('multiproducts', 'array');
if (empty($products)) { // not in Form check URL
$products = GETPOST('products', 'alpha');
if (empty($products)) {
$selectedproducts = "product.ref IS NOT NULL";
} else {
$selectedproducts = " product.ref IN " . $products;
$products = explode("','", trim($products,"('')"));
}
} else {
$selectedproducts = " product.ref IN ('" . implode("','", $products) . "')";
}
$filter = array(
"datebegin" => $datebegin,
"dateend" => $dateend,
"products" => $products,
"orders" => array(
" commande.date_commande >= '" . $datebegin . "' ",
" commande.date_commande <= '" . $dateend . "' ",
$selectedproducts
),
"shipments" => array(
"((shipment.date_expedition IS NULL AND shipment.date_creation >= '" . $datebegin . "') OR (shipment.date_expedition >= '" . $datebegin . "'))",
"((shipment.date_expedition IS NULL AND shipment.date_creation <= '" . $dateend . "') OR (shipment.date_expedition <= '" . $dateend . "'))",
$selectedproducts
)
);
return $filter;
}
/**
* Build the parameters string to be added to URL to keep the filter conditions.
*
* (used for list sort)
*
* @param Array $filter the filter conditions
* @return string to be added to URL
*/
function buildSearchParameters($filter)
{
$param = "";
if (! empty($filter['datebegin']))
$param .= "&datebegin=" . urlencode($filter['datebegin']);
if (! empty($filter['dateend']))
$param .= "&dateend=" . urlencode($filter['dateend']);
if (! empty($filter['products']))
$param .= "&products=" . urlencode("('" . implode("','", $filter['products']) . "')");
return $param;
}