| Total Complexity | 223 |
| Total Lines | 1608 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Complex classes like AccountingExpenseReportController often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use AccountingExpenseReportController, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 56 | class AccountingExpenseReportController extends DolibarrController |
||
|
|
|||
| 57 | { |
||
| 58 | |||
| 59 | /** |
||
| 60 | * \file htdocs/accountancy/supplier/card.php |
||
| 61 | * \ingroup Accountancy (Double entries) |
||
| 62 | * \brief Card expense report ventilation |
||
| 63 | */ |
||
| 64 | public function card() |
||
| 65 | { |
||
| 66 | global $conf; |
||
| 67 | global $db; |
||
| 68 | global $user; |
||
| 69 | global $hookmanager; |
||
| 70 | global $user; |
||
| 71 | global $menumanager; |
||
| 72 | global $langs; |
||
| 73 | global $mysoc; |
||
| 74 | |||
| 75 | // Load translation files required by the page |
||
| 76 | $langs->loadLangs(array("bills", "accountancy", "trips")); |
||
| 77 | |||
| 78 | $action = GETPOST('action', 'aZ09'); |
||
| 79 | $cancel = GETPOST('cancel', 'alpha'); |
||
| 80 | $backtopage = GETPOST('backtopage', 'alpha'); |
||
| 81 | |||
| 82 | $codeventil = GETPOSTINT('codeventil'); |
||
| 83 | $id = GETPOSTINT('id'); |
||
| 84 | |||
| 85 | // Security check |
||
| 86 | if (!isModEnabled('accounting')) { |
||
| 87 | accessforbidden(); |
||
| 88 | } |
||
| 89 | if ($user->socid > 0) { |
||
| 90 | accessforbidden(); |
||
| 91 | } |
||
| 92 | if (!$user->hasRight('accounting', 'mouvements', 'lire')) { |
||
| 93 | accessforbidden(); |
||
| 94 | } |
||
| 95 | |||
| 96 | |||
| 97 | /* |
||
| 98 | * Actions |
||
| 99 | */ |
||
| 100 | |||
| 101 | if ($action == 'ventil' && $user->hasRight('accounting', 'bind', 'write')) { |
||
| 102 | if (!$cancel) { |
||
| 103 | if ($codeventil < 0) { |
||
| 104 | $codeventil = 0; |
||
| 105 | } |
||
| 106 | |||
| 107 | $sql = " UPDATE " . MAIN_DB_PREFIX . "expensereport_det"; |
||
| 108 | $sql .= " SET fk_code_ventilation = " . ((int) $codeventil); |
||
| 109 | $sql .= " WHERE rowid = " . ((int) $id); |
||
| 110 | |||
| 111 | $resql = $db->query($sql); |
||
| 112 | if (!$resql) { |
||
| 113 | setEventMessages($db->lasterror(), null, 'errors'); |
||
| 114 | } else { |
||
| 115 | setEventMessages($langs->trans("RecordModifiedSuccessfully"), null, 'mesgs'); |
||
| 116 | if ($backtopage) { |
||
| 117 | header("Location: " . $backtopage); |
||
| 118 | exit(); |
||
| 119 | } |
||
| 120 | } |
||
| 121 | } else { |
||
| 122 | header("Location: ./lines.php"); |
||
| 123 | exit(); |
||
| 124 | } |
||
| 125 | } |
||
| 126 | |||
| 127 | |||
| 128 | |||
| 129 | /* |
||
| 130 | * View |
||
| 131 | */ |
||
| 132 | $help_url = 'EN:Module_Double_Entry_Accounting|FR:Module_Comptabilité_en_Partie_Double#Liaisons_comptables'; |
||
| 133 | |||
| 134 | llxHeader("", $langs->trans('FicheVentilation'), $help_url); |
||
| 135 | |||
| 136 | if ($cancel == $langs->trans("Cancel")) { |
||
| 137 | $action = ''; |
||
| 138 | } |
||
| 139 | |||
| 140 | // Create |
||
| 141 | $form = new Form($db); |
||
| 142 | $expensereport_static = new ExpenseReport($db); |
||
| 143 | $formaccounting = new FormAccounting($db); |
||
| 144 | |||
| 145 | if (!empty($id)) { |
||
| 146 | $sql = "SELECT er.ref, er.rowid as facid, erd.fk_c_type_fees, erd.comments, erd.rowid, erd.fk_code_ventilation,"; |
||
| 147 | $sql .= " f.id as type_fees_id, f.code as type_fees_code, f.label as type_fees_label,"; |
||
| 148 | $sql .= " aa.account_number, aa.label"; |
||
| 149 | $sql .= " FROM " . MAIN_DB_PREFIX . "expensereport_det as erd"; |
||
| 150 | $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "c_type_fees as f ON f.id = erd.fk_c_type_fees"; |
||
| 151 | $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "accounting_account as aa ON erd.fk_code_ventilation = aa.rowid"; |
||
| 152 | $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "expensereport as er ON er.rowid = erd.fk_expensereport"; |
||
| 153 | $sql .= " WHERE er.fk_statut > 0 AND erd.rowid = " . ((int) $id); |
||
| 154 | $sql .= " AND er.entity IN (" . getEntity('expensereport', 0) . ")"; // We don't share object for accountancy |
||
| 155 | |||
| 156 | dol_syslog("/accounting/expensereport/card.php", LOG_DEBUG); |
||
| 157 | $result = $db->query($sql); |
||
| 158 | |||
| 159 | if ($result) { |
||
| 160 | $num_lines = $db->num_rows($result); |
||
| 161 | $i = 0; |
||
| 162 | |||
| 163 | if ($num_lines) { |
||
| 164 | $objp = $db->fetch_object($result); |
||
| 165 | |||
| 166 | print '<form action="' . $_SERVER['PHP_SELF'] . '?id=' . $id . '" method="post">' . "\n"; |
||
| 167 | print '<input type="hidden" name="token" value="' . newToken() . '">'; |
||
| 168 | print '<input type="hidden" name="action" value="ventil">'; |
||
| 169 | print '<input type="hidden" name="backtopage" value="' . dol_escape_htmltag($backtopage) . '">'; |
||
| 170 | |||
| 171 | print load_fiche_titre($langs->trans('ExpenseReportsVentilation'), '', 'title_accountancy'); |
||
| 172 | |||
| 173 | print dol_get_fiche_head(); |
||
| 174 | |||
| 175 | print '<table class="border centpercent">'; |
||
| 176 | |||
| 177 | // Ref |
||
| 178 | print '<tr><td class="titlefield">' . $langs->trans("ExpenseReport") . '</td>'; |
||
| 179 | $expensereport_static->ref = $objp->ref; |
||
| 180 | $expensereport_static->id = $objp->erid; |
||
| 181 | print '<td>' . $expensereport_static->getNomUrl(1) . '</td>'; |
||
| 182 | print '</tr>'; |
||
| 183 | |||
| 184 | print '<tr><td>' . $langs->trans("Line") . '</td>'; |
||
| 185 | print '<td>' . stripslashes(nl2br($objp->rowid)) . '</td></tr>'; |
||
| 186 | |||
| 187 | print '<tr><td>' . $langs->trans("Description") . '</td>'; |
||
| 188 | print '<td>' . stripslashes(nl2br($objp->comments)) . '</td></tr>'; |
||
| 189 | |||
| 190 | print '<tr><td>' . $langs->trans("TypeFees") . '</td>'; |
||
| 191 | print '<td>' . ($langs->trans($objp->type_fees_code) == $objp->type_fees_code ? $objp->type_fees_label : $langs->trans(($objp->type_fees_code))) . '</td>'; |
||
| 192 | |||
| 193 | print '<tr><td>' . $langs->trans("Account") . '</td><td>'; |
||
| 194 | print $formaccounting->select_account($objp->fk_code_ventilation, 'codeventil', 1); |
||
| 195 | print '</td></tr>'; |
||
| 196 | print '</table>'; |
||
| 197 | |||
| 198 | print dol_get_fiche_end(); |
||
| 199 | |||
| 200 | print '<div class="center">'; |
||
| 201 | print '<input class="button button-save" type="submit" value="' . $langs->trans("Save") . '">'; |
||
| 202 | print ' '; |
||
| 203 | print '<input class="button button-cancel" type="submit" name="cancel" value="' . $langs->trans("Cancel") . '">'; |
||
| 204 | print '</div>'; |
||
| 205 | |||
| 206 | print '</form>'; |
||
| 207 | } else { |
||
| 208 | print "Error"; |
||
| 209 | } |
||
| 210 | } else { |
||
| 211 | print "Error"; |
||
| 212 | } |
||
| 213 | } else { |
||
| 214 | print "Error ID incorrect"; |
||
| 215 | } |
||
| 216 | |||
| 217 | // End of page |
||
| 218 | llxFooter(); |
||
| 219 | $db->close(); |
||
| 220 | } |
||
| 221 | |||
| 222 | /** |
||
| 223 | * \file htdocs/accountancy/expensereport/index.php |
||
| 224 | * \ingroup Accountancy (Double entries) |
||
| 225 | * \brief Home expense report ventilation |
||
| 226 | */ |
||
| 227 | public function index() |
||
| 228 | { |
||
| 229 | global $conf; |
||
| 230 | global $db; |
||
| 231 | global $user; |
||
| 232 | global $hookmanager; |
||
| 233 | global $user; |
||
| 234 | global $menumanager; |
||
| 235 | global $langs; |
||
| 236 | global $mysoc; |
||
| 237 | |||
| 238 | // Load translation files required by the page |
||
| 239 | $langs->loadLangs(array("compta", "bills", "other", "accountancy")); |
||
| 240 | |||
| 241 | $validatemonth = GETPOSTINT('validatemonth'); |
||
| 242 | $validateyear = GETPOSTINT('validateyear'); |
||
| 243 | |||
| 244 | $month_start = getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1); |
||
| 245 | if (GETPOSTINT("year")) { |
||
| 246 | $year_start = GETPOSTINT("year"); |
||
| 247 | } else { |
||
| 248 | $year_start = dol_print_date(dol_now(), '%Y'); |
||
| 249 | if (dol_print_date(dol_now(), '%m') < $month_start) { |
||
| 250 | $year_start--; // If current month is lower that starting fiscal month, we start last year |
||
| 251 | } |
||
| 252 | } |
||
| 253 | $year_end = $year_start + 1; |
||
| 254 | $month_end = $month_start - 1; |
||
| 255 | if ($month_end < 1) { |
||
| 256 | $month_end = 12; |
||
| 257 | $year_end--; |
||
| 258 | } |
||
| 259 | $search_date_start = dol_mktime(0, 0, 0, $month_start, 1, $year_start); |
||
| 260 | $search_date_end = dol_get_last_day($year_end, $month_end); |
||
| 261 | $year_current = $year_start; |
||
| 262 | |||
| 263 | // Validate History |
||
| 264 | $action = GETPOST('action', 'aZ09'); |
||
| 265 | |||
| 266 | $chartaccountcode = dol_getIdFromCode($db, getDolGlobalInt('CHARTOFACCOUNTS'), 'accounting_system', 'rowid', 'pcg_version'); |
||
| 267 | |||
| 268 | // Security check |
||
| 269 | if (!isModEnabled('accounting')) { |
||
| 270 | accessforbidden(); |
||
| 271 | } |
||
| 272 | if ($user->socid > 0) { |
||
| 273 | accessforbidden(); |
||
| 274 | } |
||
| 275 | if (!$user->hasRight('accounting', 'mouvements', 'lire')) { |
||
| 276 | accessforbidden(); |
||
| 277 | } |
||
| 278 | |||
| 279 | |||
| 280 | /* |
||
| 281 | * Actions |
||
| 282 | */ |
||
| 283 | |||
| 284 | if (($action == 'clean' || $action == 'validatehistory') && $user->hasRight('accounting', 'bind', 'write')) { |
||
| 285 | // Clean database |
||
| 286 | $db->begin(); |
||
| 287 | $sql1 = "UPDATE " . MAIN_DB_PREFIX . "expensereport_det as erd"; |
||
| 288 | $sql1 .= " SET fk_code_ventilation = 0"; |
||
| 289 | $sql1 .= ' WHERE erd.fk_code_ventilation NOT IN'; |
||
| 290 | $sql1 .= ' (SELECT accnt.rowid '; |
||
| 291 | $sql1 .= ' FROM ' . MAIN_DB_PREFIX . 'accounting_account as accnt'; |
||
| 292 | $sql1 .= ' INNER JOIN ' . MAIN_DB_PREFIX . 'accounting_system as syst'; |
||
| 293 | $sql1 .= ' ON accnt.fk_pcg_version = syst.pcg_version AND syst.rowid=' . ((int) getDolGlobalInt('CHARTOFACCOUNTS')) . ' AND accnt.entity = ' . ((int) $conf->entity) . ')'; |
||
| 294 | $sql1 .= ' AND erd.fk_expensereport IN (SELECT rowid FROM ' . MAIN_DB_PREFIX . 'expensereport WHERE entity = ' . ((int) $conf->entity) . ')'; |
||
| 295 | $sql1 .= ' AND fk_code_ventilation <> 0'; |
||
| 296 | dol_syslog("htdocs/accountancy/customer/index.php fixaccountancycode", LOG_DEBUG); |
||
| 297 | $resql1 = $db->query($sql1); |
||
| 298 | if (!$resql1) { |
||
| 299 | $error++; |
||
| 300 | $db->rollback(); |
||
| 301 | setEventMessages($db->lasterror(), null, 'errors'); |
||
| 302 | } else { |
||
| 303 | $db->commit(); |
||
| 304 | } |
||
| 305 | // End clean database |
||
| 306 | } |
||
| 307 | |||
| 308 | if ($action == 'validatehistory') { |
||
| 309 | $error = 0; |
||
| 310 | $nbbinddone = 0; |
||
| 311 | $nbbindfailed = 0; |
||
| 312 | $notpossible = 0; |
||
| 313 | |||
| 314 | $db->begin(); |
||
| 315 | |||
| 316 | // Now make the binding |
||
| 317 | $sql1 = "SELECT erd.rowid, accnt.rowid as suggestedid"; |
||
| 318 | $sql1 .= " FROM " . MAIN_DB_PREFIX . "expensereport_det as erd"; |
||
| 319 | $sql1 .= " LEFT JOIN " . MAIN_DB_PREFIX . "c_type_fees as t ON erd.fk_c_type_fees = t.id"; |
||
| 320 | $sql1 .= " LEFT JOIN " . MAIN_DB_PREFIX . "accounting_account as accnt ON t.accountancy_code = accnt.account_number AND accnt.active = 1 AND accnt.fk_pcg_version = '" . $db->escape($chartaccountcode) . "' AND accnt.entity =" . ((int) $conf->entity) . ","; |
||
| 321 | $sql1 .= " " . MAIN_DB_PREFIX . "expensereport as er"; |
||
| 322 | $sql1 .= " WHERE erd.fk_expensereport = er.rowid AND er.entity = " . ((int) $conf->entity); |
||
| 323 | $sql1 .= " AND er.fk_statut IN (" . ExpenseReport::STATUS_APPROVED . ", " . ExpenseReport::STATUS_CLOSED . ") AND erd.fk_code_ventilation <= 0"; |
||
| 324 | if ($validatemonth && $validateyear) { |
||
| 325 | $sql1 .= dolSqlDateFilter('erd.date', 0, $validatemonth, $validateyear); |
||
| 326 | } |
||
| 327 | |||
| 328 | dol_syslog('htdocs/accountancy/expensereport/index.php'); |
||
| 329 | |||
| 330 | $result = $db->query($sql1); |
||
| 331 | if (!$result) { |
||
| 332 | $error++; |
||
| 333 | setEventMessages($db->lasterror(), null, 'errors'); |
||
| 334 | } else { |
||
| 335 | $num_lines = $db->num_rows($result); |
||
| 336 | |||
| 337 | $i = 0; |
||
| 338 | while ($i < min($num_lines, 10000)) { // No more than 10000 at once |
||
| 339 | $objp = $db->fetch_object($result); |
||
| 340 | |||
| 341 | $lineid = $objp->rowid; |
||
| 342 | $suggestedid = $objp->suggestedid; |
||
| 343 | |||
| 344 | if ($suggestedid > 0) { |
||
| 345 | $sqlupdate = "UPDATE " . MAIN_DB_PREFIX . "expensereport_det"; |
||
| 346 | $sqlupdate .= " SET fk_code_ventilation = " . ((int) $suggestedid); |
||
| 347 | $sqlupdate .= " WHERE fk_code_ventilation <= 0 AND rowid = " . ((int) $lineid); |
||
| 348 | |||
| 349 | $resqlupdate = $db->query($sqlupdate); |
||
| 350 | if (!$resqlupdate) { |
||
| 351 | $error++; |
||
| 352 | setEventMessages($db->lasterror(), null, 'errors'); |
||
| 353 | $nbbindfailed++; |
||
| 354 | break; |
||
| 355 | } else { |
||
| 356 | $nbbinddone++; |
||
| 357 | } |
||
| 358 | } else { |
||
| 359 | $notpossible++; |
||
| 360 | $nbbindfailed++; |
||
| 361 | } |
||
| 362 | |||
| 363 | $i++; |
||
| 364 | } |
||
| 365 | if ($num_lines > 10000) { |
||
| 366 | $notpossible += ($num_lines - 10000); |
||
| 367 | } |
||
| 368 | } |
||
| 369 | |||
| 370 | if ($error) { |
||
| 371 | $db->rollback(); |
||
| 372 | } else { |
||
| 373 | $db->commit(); |
||
| 374 | setEventMessages($langs->trans('AutomaticBindingDone', $nbbinddone, $notpossible), null, ($notpossible ? 'warnings' : 'mesgs')); |
||
| 375 | if ($nbbindfailed) { |
||
| 376 | setEventMessages($langs->trans('DoManualBindingForFailedRecord', $nbbindfailed), null, 'warnings'); |
||
| 377 | } |
||
| 378 | } |
||
| 379 | } |
||
| 380 | |||
| 381 | |||
| 382 | /* |
||
| 383 | * View |
||
| 384 | */ |
||
| 385 | $help_url = 'EN:Module_Double_Entry_Accounting|FR:Module_Comptabilité_en_Partie_Double#Liaisons_comptables'; |
||
| 386 | |||
| 387 | llxHeader('', $langs->trans("ExpenseReportsVentilation"), $help_url); |
||
| 388 | |||
| 389 | $textprevyear = '<a href="' . $_SERVER['PHP_SELF'] . '?year=' . ($year_current - 1) . '">' . img_previous() . '</a>'; |
||
| 390 | $textnextyear = ' <a href="' . $_SERVER['PHP_SELF'] . '?year=' . ($year_current + 1) . '">' . img_next() . '</a>'; |
||
| 391 | |||
| 392 | |||
| 393 | print load_fiche_titre($langs->trans("ExpenseReportsVentilation") . " " . $textprevyear . " " . $langs->trans("Year") . " " . $year_start . " " . $textnextyear, '', 'title_accountancy'); |
||
| 394 | |||
| 395 | print '<span class="opacitymedium">' . $langs->trans("DescVentilExpenseReport") . '</span><br>'; |
||
| 396 | print '<span class="opacitymedium hideonsmartphone">' . $langs->trans("DescVentilExpenseReportMore", $langs->transnoentitiesnoconv("ValidateHistory"), $langs->transnoentitiesnoconv("ToBind")) . '<br>'; |
||
| 397 | print '</span><br>'; |
||
| 398 | |||
| 399 | |||
| 400 | $y = $year_current; |
||
| 401 | |||
| 402 | $buttonbind = '<a class="button small" href="' . $_SERVER['PHP_SELF'] . '?action=validatehistory&token=' . newToken() . '&year=' . $year_current . '">' . img_picto('', 'link', 'class="paddingright fa-color-unset"') . $langs->trans("ValidateHistory") . '</a>'; |
||
| 403 | |||
| 404 | |||
| 405 | print_barre_liste(img_picto('', 'unlink', 'class="paddingright fa-color-unset"') . $langs->trans("OverviewOfAmountOfLinesNotBound"), '', '', '', '', '', '', -1, '', '', 0, '', '', 0, 1, 1, 0, $buttonbind); |
||
| 406 | //print load_fiche_titre($langs->trans("OverviewOfAmountOfLinesNotBound"), $buttonbind, ''); |
||
| 407 | |||
| 408 | print '<div class="div-table-responsive-no-min">'; |
||
| 409 | print '<table class="noborder centpercent">'; |
||
| 410 | print '<tr class="liste_titre"><td class="minwidth100">' . $langs->trans("Account") . '</td>'; |
||
| 411 | print '<td>' . $langs->trans("Label") . '</td>'; |
||
| 412 | for ($i = 1; $i <= 12; $i++) { |
||
| 413 | $j = $i + getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1) - 1; |
||
| 414 | if ($j > 12) { |
||
| 415 | $j -= 12; |
||
| 416 | } |
||
| 417 | $cursormonth = $j; |
||
| 418 | if ($cursormonth > 12) { |
||
| 419 | $cursormonth -= 12; |
||
| 420 | } |
||
| 421 | $cursoryear = ($cursormonth < getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1)) ? $y + 1 : $y; |
||
| 422 | $tmp = dol_getdate(dol_get_last_day($cursoryear, $cursormonth, 'gmt'), false, 'gmt'); |
||
| 423 | |||
| 424 | print '<td width="60" class="right">'; |
||
| 425 | if (!empty($tmp['mday'])) { |
||
| 426 | $param = 'search_date_startday=1&search_date_startmonth=' . $cursormonth . '&search_date_startyear=' . $cursoryear; |
||
| 427 | $param .= '&search_date_endday=' . $tmp['mday'] . '&search_date_endmonth=' . $tmp['mon'] . '&search_date_endyear=' . $tmp['year']; |
||
| 428 | $param .= '&search_month=' . $tmp['mon'] . '&search_year=' . $tmp['year']; |
||
| 429 | print '<a href="' . DOL_URL_ROOT . '/accountancy/expensereport/list.php?' . $param . '">'; |
||
| 430 | } |
||
| 431 | print $langs->trans('MonthShort' . str_pad((int) $j, 2, '0', STR_PAD_LEFT)); |
||
| 432 | if (!empty($tmp['mday'])) { |
||
| 433 | print '</a>'; |
||
| 434 | } |
||
| 435 | print '</td>'; |
||
| 436 | } |
||
| 437 | print '<td width="60" class="right"><b>' . $langs->trans("Total") . '</b></td></tr>'; |
||
| 438 | |||
| 439 | $sql = "SELECT " . $db->ifsql('aa.account_number IS NULL', "'tobind'", 'aa.account_number') . " AS codecomptable,"; |
||
| 440 | $sql .= " " . $db->ifsql('aa.label IS NULL', "'tobind'", 'aa.label') . " AS intitule,"; |
||
| 441 | for ($i = 1; $i <= 12; $i++) { |
||
| 442 | $j = $i + getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1) - 1; |
||
| 443 | if ($j > 12) { |
||
| 444 | $j -= 12; |
||
| 445 | } |
||
| 446 | $sql .= " SUM(" . $db->ifsql("MONTH(er.date_debut) = " . ((int) $j), "erd.total_ht", "0") . ") AS month" . str_pad((int) $j, 2, "0", STR_PAD_LEFT) . ","; |
||
| 447 | } |
||
| 448 | $sql .= " SUM(erd.total_ht) as total"; |
||
| 449 | $sql .= " FROM " . MAIN_DB_PREFIX . "expensereport_det as erd"; |
||
| 450 | $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "expensereport as er ON er.rowid = erd.fk_expensereport"; |
||
| 451 | $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "accounting_account as aa ON aa.rowid = erd.fk_code_ventilation"; |
||
| 452 | $sql .= " WHERE er.date_debut >= '" . $db->idate($search_date_start) . "'"; |
||
| 453 | $sql .= " AND er.date_debut <= '" . $db->idate($search_date_end) . "'"; |
||
| 454 | // Define begin binding date |
||
| 455 | if (getDolGlobalString('ACCOUNTING_DATE_START_BINDING')) { |
||
| 456 | $sql .= " AND er.date_debut >= '" . $db->idate(getDolGlobalString('ACCOUNTING_DATE_START_BINDING')) . "'"; |
||
| 457 | } |
||
| 458 | $sql .= " AND er.fk_statut IN (" . ExpenseReport::STATUS_APPROVED . ", " . ExpenseReport::STATUS_CLOSED . ")"; |
||
| 459 | $sql .= " AND er.entity IN (" . getEntity('expensereport', 0) . ")"; // We don't share object for accountancy |
||
| 460 | $sql .= " AND aa.account_number IS NULL"; |
||
| 461 | $sql .= " GROUP BY erd.fk_code_ventilation,aa.account_number,aa.label"; |
||
| 462 | $sql .= ' ORDER BY aa.account_number'; |
||
| 463 | |||
| 464 | dol_syslog('/accountancy/expensereport/index.php', LOG_DEBUG); |
||
| 465 | $resql = $db->query($sql); |
||
| 466 | if ($resql) { |
||
| 467 | $num = $db->num_rows($resql); |
||
| 468 | |||
| 469 | while ($row = $db->fetch_row($resql)) { |
||
| 470 | print '<tr class="oddeven">'; |
||
| 471 | print '<td>'; |
||
| 472 | if ($row[0] == 'tobind') { |
||
| 473 | print '<span class="opacitymedium">' . $langs->trans("Unknown") . '</span>'; |
||
| 474 | } else { |
||
| 475 | print length_accountg($row[0]); |
||
| 476 | } |
||
| 477 | print '</td>'; |
||
| 478 | print '<td>'; |
||
| 479 | if ($row[0] == 'tobind') { |
||
| 480 | $startmonth = getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1); |
||
| 481 | if ($startmonth > 12) { |
||
| 482 | $startmonth -= 12; |
||
| 483 | } |
||
| 484 | $startyear = ($startmonth < getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1)) ? $y + 1 : $y; |
||
| 485 | $endmonth = getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1) + 11; |
||
| 486 | if ($endmonth > 12) { |
||
| 487 | $endmonth -= 12; |
||
| 488 | } |
||
| 489 | $endyear = ($endmonth < getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1)) ? $y + 1 : $y; |
||
| 490 | print $langs->trans("UseMenuToSetBindindManualy", DOL_URL_ROOT . '/accountancy/expensereport/list.php?search_date_startday=1&search_date_startmonth=' . ((int) $startmonth) . '&search_date_startyear=' . ((int) $startyear) . '&search_date_endday=&search_date_endmonth=' . ((int) $endmonth) . '&search_date_endyear=' . ((int) $endyear), $langs->transnoentitiesnoconv("ToBind")); |
||
| 491 | } else { |
||
| 492 | print $row[1]; |
||
| 493 | } |
||
| 494 | print '</td>'; |
||
| 495 | for ($i = 2; $i <= 13; $i++) { |
||
| 496 | $cursormonth = (getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1) + $i - 2); |
||
| 497 | if ($cursormonth > 12) { |
||
| 498 | $cursormonth -= 12; |
||
| 499 | } |
||
| 500 | $cursoryear = ($cursormonth < getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1)) ? $y + 1 : $y; |
||
| 501 | $tmp = dol_getdate(dol_get_last_day($cursoryear, $cursormonth, 'gmt'), false, 'gmt'); |
||
| 502 | |||
| 503 | print '<td class="right nowraponall amount">'; |
||
| 504 | print price($row[$i]); |
||
| 505 | // Add link to make binding |
||
| 506 | if (!empty(price2num($row[$i]))) { |
||
| 507 | print '<a href="' . $_SERVER['PHP_SELF'] . '?action=validatehistory&year=' . $y . '&validatemonth=' . ((int) $cursormonth) . '&validateyear=' . ((int) $cursoryear) . '&token=' . newToken() . '">'; |
||
| 508 | print img_picto($langs->trans("ValidateHistory") . ' (' . $langs->trans('Month' . str_pad($cursormonth, 2, '0', STR_PAD_LEFT)) . ' ' . $cursoryear . ')', 'link', 'class="marginleft2"'); |
||
| 509 | print '</a>'; |
||
| 510 | } |
||
| 511 | print '</td>'; |
||
| 512 | } |
||
| 513 | print '<td class="right nowraponall amount"><b>' . price($row[14]) . '</b></td>'; |
||
| 514 | print '</tr>'; |
||
| 515 | } |
||
| 516 | $db->free($resql); |
||
| 517 | |||
| 518 | if ($num == 0) { |
||
| 519 | print '<tr class="oddeven"><td colspan="16">'; |
||
| 520 | print '<span class="opacitymedium">' . $langs->trans("NoRecordFound") . '</span>'; |
||
| 521 | print '</td></tr>'; |
||
| 522 | } |
||
| 523 | } else { |
||
| 524 | print $db->lasterror(); // Show last sql error |
||
| 525 | } |
||
| 526 | print "</table>\n"; |
||
| 527 | print '</div>'; |
||
| 528 | |||
| 529 | |||
| 530 | print '<br>'; |
||
| 531 | |||
| 532 | |||
| 533 | print_barre_liste(img_picto('', 'link', 'class="paddingright fa-color-unset"') . $langs->trans("OverviewOfAmountOfLinesBound"), '', '', '', '', '', '', -1, '', '', 0, '', '', 0, 1, 1); |
||
| 534 | //print load_fiche_titre($langs->trans("OverviewOfAmountOfLinesBound"), '', ''); |
||
| 535 | |||
| 536 | |||
| 537 | print '<div class="div-table-responsive-no-min">'; |
||
| 538 | print '<table class="noborder centpercent">'; |
||
| 539 | print '<tr class="liste_titre"><td class="minwidth100">' . $langs->trans("Account") . '</td>'; |
||
| 540 | print '<td>' . $langs->trans("Label") . '</td>'; |
||
| 541 | for ($i = 1; $i <= 12; $i++) { |
||
| 542 | $j = $i + getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1) - 1; |
||
| 543 | if ($j > 12) { |
||
| 544 | $j -= 12; |
||
| 545 | } |
||
| 546 | print '<td width="60" class="right">' . $langs->trans('MonthShort' . str_pad((int) $j, 2, '0', STR_PAD_LEFT)) . '</td>'; |
||
| 547 | } |
||
| 548 | print '<td width="60" class="right"><b>' . $langs->trans("Total") . '</b></td></tr>'; |
||
| 549 | |||
| 550 | $sql = "SELECT " . $db->ifsql('aa.account_number IS NULL', "'tobind'", 'aa.account_number') . " AS codecomptable,"; |
||
| 551 | $sql .= " " . $db->ifsql('aa.label IS NULL', "'tobind'", 'aa.label') . " AS intitule,"; |
||
| 552 | for ($i = 1; $i <= 12; $i++) { |
||
| 553 | $j = $i + getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1) - 1; |
||
| 554 | if ($j > 12) { |
||
| 555 | $j -= 12; |
||
| 556 | } |
||
| 557 | $sql .= " SUM(" . $db->ifsql("MONTH(er.date_debut) = " . ((int) $j), "erd.total_ht", "0") . ") AS month" . str_pad((int) $j, 2, "0", STR_PAD_LEFT) . ","; |
||
| 558 | } |
||
| 559 | $sql .= " ROUND(SUM(erd.total_ht),2) as total"; |
||
| 560 | $sql .= " FROM " . MAIN_DB_PREFIX . "expensereport_det as erd"; |
||
| 561 | $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "expensereport as er ON er.rowid = erd.fk_expensereport"; |
||
| 562 | $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "accounting_account as aa ON aa.rowid = erd.fk_code_ventilation"; |
||
| 563 | $sql .= " WHERE er.date_debut >= '" . $db->idate($search_date_start) . "'"; |
||
| 564 | $sql .= " AND er.date_debut <= '" . $db->idate($search_date_end) . "'"; |
||
| 565 | // Define begin binding date |
||
| 566 | if (getDolGlobalString('ACCOUNTING_DATE_START_BINDING')) { |
||
| 567 | $sql .= " AND er.date_debut >= '" . $db->idate(getDolGlobalString('ACCOUNTING_DATE_START_BINDING')) . "'"; |
||
| 568 | } |
||
| 569 | $sql .= " AND er.fk_statut IN (" . ExpenseReport::STATUS_APPROVED . ", " . ExpenseReport::STATUS_CLOSED . ")"; |
||
| 570 | $sql .= " AND er.entity IN (" . getEntity('expensereport', 0) . ")"; // We don't share object for accountancy |
||
| 571 | $sql .= " AND aa.account_number IS NOT NULL"; |
||
| 572 | $sql .= " GROUP BY erd.fk_code_ventilation,aa.account_number,aa.label"; |
||
| 573 | |||
| 574 | dol_syslog('htdocs/accountancy/expensereport/index.php'); |
||
| 575 | $resql = $db->query($sql); |
||
| 576 | if ($resql) { |
||
| 577 | $num = $db->num_rows($resql); |
||
| 578 | |||
| 579 | while ($row = $db->fetch_row($resql)) { |
||
| 580 | print '<tr class="oddeven">'; |
||
| 581 | print '<td>'; |
||
| 582 | if ($row[0] == 'tobind') { |
||
| 583 | print '<span class="opacitymedium">' . $langs->trans("Unknown") . '</span>'; |
||
| 584 | } else { |
||
| 585 | print length_accountg($row[0]); |
||
| 586 | } |
||
| 587 | print '</td>'; |
||
| 588 | |||
| 589 | print '<td>'; |
||
| 590 | if ($row[0] == 'tobind') { |
||
| 591 | print $langs->trans("UseMenuToSetBindindManualy", DOL_URL_ROOT . '/accountancy/expensereport/list.php?search_year=' . ((int) $y), $langs->transnoentitiesnoconv("ToBind")); |
||
| 592 | } else { |
||
| 593 | print $row[1]; |
||
| 594 | } |
||
| 595 | print '</td>'; |
||
| 596 | for ($i = 2; $i <= 13; $i++) { |
||
| 597 | print '<td class="right nowraponall amount">'; |
||
| 598 | print price($row[$i]); |
||
| 599 | print '</td>'; |
||
| 600 | } |
||
| 601 | print '<td class="right nowraponall amount"><b>' . price($row[14]) . '</b></td>'; |
||
| 602 | print '</tr>'; |
||
| 603 | } |
||
| 604 | $db->free($resql); |
||
| 605 | |||
| 606 | if ($num == 0) { |
||
| 607 | print '<tr class="oddeven"><td colspan="16">'; |
||
| 608 | print '<span class="opacitymedium">' . $langs->trans("NoRecordFound") . '</span>'; |
||
| 609 | print '</td></tr>'; |
||
| 610 | } |
||
| 611 | } else { |
||
| 612 | print $db->lasterror(); // Show last sql error |
||
| 613 | } |
||
| 614 | print "</table>\n"; |
||
| 615 | print '</div>'; |
||
| 616 | |||
| 617 | |||
| 618 | |||
| 619 | if (getDolGlobalString('SHOW_TOTAL_OF_PREVIOUS_LISTS_IN_LIN_PAGE')) { // This part of code looks strange. Why showing a report that should rely on result of this step ? |
||
| 620 | print '<br>'; |
||
| 621 | print '<br>'; |
||
| 622 | |||
| 623 | print_barre_liste($langs->trans("OtherInfo"), '', '', '', '', '', '', -1, '', '', 0, '', '', 0, 1, 1); |
||
| 624 | //print load_fiche_titre($langs->trans("OtherInfo"), '', ''); |
||
| 625 | |||
| 626 | print '<div class="div-table-responsive-no-min">'; |
||
| 627 | print '<table class="noborder centpercent">'; |
||
| 628 | print '<tr class="liste_titre"><td class="left">' . $langs->trans("Total") . '</td>'; |
||
| 629 | for ($i = 1; $i <= 12; $i++) { |
||
| 630 | $j = $i + getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1) - 1; |
||
| 631 | if ($j > 12) { |
||
| 632 | $j -= 12; |
||
| 633 | } |
||
| 634 | print '<td width="60" class="right">' . $langs->trans('MonthShort' . str_pad($j, 2, '0', STR_PAD_LEFT)) . '</td>'; |
||
| 635 | } |
||
| 636 | print '<td width="60" class="right"><b>' . $langs->trans("Total") . '</b></td></tr>'; |
||
| 637 | |||
| 638 | $sql = "SELECT '" . $db->escape($langs->trans("TotalExpenseReport")) . "' AS label,"; |
||
| 639 | for ($i = 1; $i <= 12; $i++) { |
||
| 640 | $j = $i + getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1) - 1; |
||
| 641 | if ($j > 12) { |
||
| 642 | $j -= 12; |
||
| 643 | } |
||
| 644 | $sql .= " SUM(" . $db->ifsql("MONTH(er.date_create) = " . ((int) $j), "erd.total_ht", "0") . ") AS month" . str_pad((int) $j, 2, "0", STR_PAD_LEFT) . ","; |
||
| 645 | } |
||
| 646 | $sql .= " SUM(erd.total_ht) as total"; |
||
| 647 | $sql .= " FROM " . MAIN_DB_PREFIX . "expensereport_det as erd"; |
||
| 648 | $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "expensereport as er ON er.rowid = erd.fk_expensereport"; |
||
| 649 | $sql .= " WHERE er.date_debut >= '" . $db->idate($search_date_start) . "'"; |
||
| 650 | $sql .= " AND er.date_debut <= '" . $db->idate($search_date_end) . "'"; |
||
| 651 | // Define begin binding date |
||
| 652 | if (getDolGlobalString('ACCOUNTING_DATE_START_BINDING')) { |
||
| 653 | $sql .= " AND er.date_debut >= '" . $db->idate(getDolGlobalString('ACCOUNTING_DATE_START_BINDING')) . "'"; |
||
| 654 | } |
||
| 655 | $sql .= " AND er.fk_statut IN (" . ExpenseReport::STATUS_APPROVED . ", " . ExpenseReport::STATUS_CLOSED . ")"; |
||
| 656 | $sql .= " AND er.entity IN (" . getEntity('expensereport', 0) . ")"; // We don't share object for accountancy |
||
| 657 | |||
| 658 | dol_syslog('htdocs/accountancy/expensereport/index.php'); |
||
| 659 | $resql = $db->query($sql); |
||
| 660 | if ($resql) { |
||
| 661 | $num = $db->num_rows($resql); |
||
| 662 | |||
| 663 | while ($row = $db->fetch_row($resql)) { |
||
| 664 | print '<tr><td>' . $row[0] . '</td>'; |
||
| 665 | for ($i = 1; $i <= 12; $i++) { |
||
| 666 | print '<td class="right nowraponall amount">' . price($row[$i]) . '</td>'; |
||
| 667 | } |
||
| 668 | print '<td class="right nowraponall amount"><b>' . price($row[13]) . '</b></td>'; |
||
| 669 | print '</tr>'; |
||
| 670 | } |
||
| 671 | |||
| 672 | $db->free($resql); |
||
| 673 | } else { |
||
| 674 | print $db->lasterror(); // Show last sql error |
||
| 675 | } |
||
| 676 | print "</table>\n"; |
||
| 677 | print '</div>'; |
||
| 678 | } |
||
| 679 | |||
| 680 | // End of page |
||
| 681 | llxFooter(); |
||
| 682 | $db->close(); |
||
| 683 | } |
||
| 684 | |||
| 685 | /** |
||
| 686 | * \file htdocs/accountancy/expensereport/lines.php |
||
| 687 | * \ingroup Accountancy (Double entries) |
||
| 688 | * \brief Page of detail of the lines of ventilation of expense reports |
||
| 689 | */ |
||
| 690 | public function lines() |
||
| 691 | { |
||
| 692 | global $conf; |
||
| 693 | global $db; |
||
| 694 | global $user; |
||
| 695 | global $hookmanager; |
||
| 696 | global $user; |
||
| 697 | global $menumanager; |
||
| 698 | global $langs; |
||
| 699 | global $mysoc; |
||
| 700 | |||
| 701 | // Load translation files required by the page |
||
| 702 | $langs->loadLangs(array("compta", "bills", "other", "accountancy", "trips", "productbatch", "hrm")); |
||
| 703 | |||
| 704 | $optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print') |
||
| 705 | |||
| 706 | $account_parent = GETPOSTINT('account_parent'); |
||
| 707 | $changeaccount = GETPOST('changeaccount'); |
||
| 708 | // Search Getpost |
||
| 709 | $search_login = GETPOST('search_login', 'alpha'); |
||
| 710 | $search_expensereport = GETPOST('search_expensereport', 'alpha'); |
||
| 711 | $search_label = GETPOST('search_label', 'alpha'); |
||
| 712 | $search_desc = GETPOST('search_desc', 'alpha'); |
||
| 713 | $search_amount = GETPOST('search_amount', 'alpha'); |
||
| 714 | $search_account = GETPOST('search_account', 'alpha'); |
||
| 715 | $search_vat = GETPOST('search_vat', 'alpha'); |
||
| 716 | $search_date_startday = GETPOSTINT('search_date_startday'); |
||
| 717 | $search_date_startmonth = GETPOSTINT('search_date_startmonth'); |
||
| 718 | $search_date_startyear = GETPOSTINT('search_date_startyear'); |
||
| 719 | $search_date_endday = GETPOSTINT('search_date_endday'); |
||
| 720 | $search_date_endmonth = GETPOSTINT('search_date_endmonth'); |
||
| 721 | $search_date_endyear = GETPOSTINT('search_date_endyear'); |
||
| 722 | $search_date_start = dol_mktime(0, 0, 0, $search_date_startmonth, $search_date_startday, $search_date_startyear); // Use tzserver |
||
| 723 | $search_date_end = dol_mktime(23, 59, 59, $search_date_endmonth, $search_date_endday, $search_date_endyear); |
||
| 724 | |||
| 725 | // Load variable for pagination |
||
| 726 | $limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : getDolGlobalString('ACCOUNTING_LIMIT_LIST_VENTILATION', $conf->liste_limit); |
||
| 727 | $sortfield = GETPOST('sortfield', 'aZ09comma'); |
||
| 728 | $sortorder = GETPOST('sortorder', 'aZ09comma'); |
||
| 729 | $page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page"); |
||
| 730 | if (empty($page) || $page < 0) { |
||
| 731 | $page = 0; |
||
| 732 | } |
||
| 733 | $offset = $limit * $page; |
||
| 734 | $pageprev = $page - 1; |
||
| 735 | $pagenext = $page + 1; |
||
| 736 | if (!$sortfield) { |
||
| 737 | $sortfield = "erd.date, erd.rowid"; |
||
| 738 | } |
||
| 739 | if (!$sortorder) { |
||
| 740 | if (getDolGlobalInt('ACCOUNTING_LIST_SORT_VENTILATION_DONE') > 0) { |
||
| 741 | $sortorder = "DESC"; |
||
| 742 | } else { |
||
| 743 | $sortorder = "ASC"; |
||
| 744 | } |
||
| 745 | } |
||
| 746 | |||
| 747 | // Security check |
||
| 748 | if (!isModEnabled('accounting')) { |
||
| 749 | accessforbidden(); |
||
| 750 | } |
||
| 751 | if ($user->socid > 0) { |
||
| 752 | accessforbidden(); |
||
| 753 | } |
||
| 754 | if (!$user->hasRight('accounting', 'mouvements', 'lire')) { |
||
| 755 | accessforbidden(); |
||
| 756 | } |
||
| 757 | |||
| 758 | |||
| 759 | $formaccounting = new FormAccounting($db); |
||
| 760 | |||
| 761 | |||
| 762 | /* |
||
| 763 | * Actions |
||
| 764 | */ |
||
| 765 | |||
| 766 | // Purge search criteria |
||
| 767 | if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // Both test are required to be compatible with all browsers |
||
| 768 | $search_login = ''; |
||
| 769 | $search_expensereport = ''; |
||
| 770 | $search_label = ''; |
||
| 771 | $search_desc = ''; |
||
| 772 | $search_amount = ''; |
||
| 773 | $search_account = ''; |
||
| 774 | $search_vat = ''; |
||
| 775 | $search_date_startday = ''; |
||
| 776 | $search_date_startmonth = ''; |
||
| 777 | $search_date_startyear = ''; |
||
| 778 | $search_date_endday = ''; |
||
| 779 | $search_date_endmonth = ''; |
||
| 780 | $search_date_endyear = ''; |
||
| 781 | $search_date_start = ''; |
||
| 782 | $search_date_end = ''; |
||
| 783 | } |
||
| 784 | |||
| 785 | if (is_array($changeaccount) && count($changeaccount) > 0 && $user->hasRight('accounting', 'bind', 'write')) { |
||
| 786 | $error = 0; |
||
| 787 | |||
| 788 | if (!(GETPOSTINT('account_parent') >= 0)) { |
||
| 789 | $error++; |
||
| 790 | setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Account")), null, 'errors'); |
||
| 791 | } |
||
| 792 | |||
| 793 | if (!$error) { |
||
| 794 | $db->begin(); |
||
| 795 | |||
| 796 | $sql1 = "UPDATE " . MAIN_DB_PREFIX . "expensereport_det as erd"; |
||
| 797 | $sql1 .= " SET erd.fk_code_ventilation=" . (GETPOSTINT('account_parent') > 0 ? GETPOSTINT('account_parent') : '0'); |
||
| 798 | $sql1 .= ' WHERE erd.rowid IN (' . $db->sanitize(implode(',', $changeaccount)) . ')'; |
||
| 799 | |||
| 800 | dol_syslog('accountancy/expensereport/lines.php::changeaccount sql= ' . $sql1); |
||
| 801 | $resql1 = $db->query($sql1); |
||
| 802 | if (!$resql1) { |
||
| 803 | $error++; |
||
| 804 | setEventMessages($db->lasterror(), null, 'errors'); |
||
| 805 | } |
||
| 806 | if (!$error) { |
||
| 807 | $db->commit(); |
||
| 808 | setEventMessages($langs->trans("Save"), null, 'mesgs'); |
||
| 809 | } else { |
||
| 810 | $db->rollback(); |
||
| 811 | setEventMessages($db->lasterror(), null, 'errors'); |
||
| 812 | } |
||
| 813 | |||
| 814 | $account_parent = ''; // Protection to avoid to mass apply it a second time |
||
| 815 | } |
||
| 816 | } |
||
| 817 | |||
| 818 | if (GETPOST('sortfield') == 'erd.date, erd.rowid') { |
||
| 819 | $value = (GETPOST('sortorder') == 'asc,asc' ? 0 : 1); |
||
| 820 | require_once DOL_DOCUMENT_ROOT . '/core/lib/admin.lib.php'; |
||
| 821 | $res = dolibarr_set_const($db, "ACCOUNTING_LIST_SORT_VENTILATION_DONE", $value, 'yesno', 0, '', $conf->entity); |
||
| 822 | } |
||
| 823 | |||
| 824 | |||
| 825 | /* |
||
| 826 | * View |
||
| 827 | */ |
||
| 828 | |||
| 829 | $form = new Form($db); |
||
| 830 | $formother = new FormOther($db); |
||
| 831 | |||
| 832 | $help_url = 'EN:Module_Double_Entry_Accounting|FR:Module_Comptabilité_en_Partie_Double#Liaisons_comptables'; |
||
| 833 | |||
| 834 | llxHeader('', $langs->trans("ExpenseReportsVentilation") . ' - ' . $langs->trans("Dispatched"), $help_url); |
||
| 835 | |||
| 836 | print '<script type="text/javascript"> |
||
| 837 | $(function () { |
||
| 838 | $(\'#select-all\').click(function(event) { |
||
| 839 | // Iterate each checkbox |
||
| 840 | $(\':checkbox\').each(function() { |
||
| 841 | this.checked = true; |
||
| 842 | }); |
||
| 843 | }); |
||
| 844 | $(\'#unselect-all\').click(function(event) { |
||
| 845 | // Iterate each checkbox |
||
| 846 | $(\':checkbox\').each(function() { |
||
| 847 | this.checked = false; |
||
| 848 | }); |
||
| 849 | }); |
||
| 850 | }); |
||
| 851 | </script>'; |
||
| 852 | |||
| 853 | /* |
||
| 854 | * Expense reports lines |
||
| 855 | */ |
||
| 856 | $sql = "SELECT er.ref, er.rowid as erid,"; |
||
| 857 | $sql .= " erd.rowid, erd.fk_c_type_fees, erd.comments, erd.total_ht, erd.fk_code_ventilation, erd.tva_tx, erd.vat_src_code, erd.date,"; |
||
| 858 | $sql .= " f.id as type_fees_id, f.code as type_fees_code, f.label as type_fees_label,"; |
||
| 859 | $sql .= " u.rowid as userid, u.login, u.lastname, u.firstname, u.email, u.gender, u.employee, u.photo, u.statut,"; |
||
| 860 | $sql .= " aa.label, aa.labelshort, aa.account_number"; |
||
| 861 | $sql .= " FROM " . MAIN_DB_PREFIX . "expensereport as er"; |
||
| 862 | $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "expensereport_det as erd ON er.rowid = erd.fk_expensereport"; |
||
| 863 | $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "accounting_account as aa ON aa.rowid = erd.fk_code_ventilation"; |
||
| 864 | $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "c_type_fees as f ON f.id = erd.fk_c_type_fees"; |
||
| 865 | $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "user as u ON u.rowid = er.fk_user_author"; |
||
| 866 | $sql .= " WHERE erd.fk_code_ventilation > 0"; |
||
| 867 | $sql .= " AND er.entity IN (" . getEntity('expensereport', 0) . ")"; // We don't share object for accountancy |
||
| 868 | $sql .= " AND er.fk_statut IN (" . ExpenseReport::STATUS_APPROVED . ", " . ExpenseReport::STATUS_CLOSED . ")"; |
||
| 869 | // Add search filter like |
||
| 870 | if (strlen(trim($search_login))) { |
||
| 871 | $sql .= natural_search("u.login", $search_login); |
||
| 872 | } |
||
| 873 | if (strlen(trim($search_expensereport))) { |
||
| 874 | $sql .= natural_search("er.ref", $search_expensereport); |
||
| 875 | } |
||
| 876 | if (strlen(trim($search_label))) { |
||
| 877 | $sql .= natural_search("f.label", $search_label); |
||
| 878 | } |
||
| 879 | if (strlen(trim($search_desc))) { |
||
| 880 | $sql .= natural_search("er.comments", $search_desc); |
||
| 881 | } |
||
| 882 | if (strlen(trim($search_amount))) { |
||
| 883 | $sql .= natural_search("erd.total_ht", $search_amount, 1); |
||
| 884 | } |
||
| 885 | if (strlen(trim($search_account))) { |
||
| 886 | $sql .= natural_search("aa.account_number", $search_account); |
||
| 887 | } |
||
| 888 | if (strlen(trim($search_vat))) { |
||
| 889 | $sql .= natural_search("erd.tva_tx", price2num($search_vat), 1); |
||
| 890 | } |
||
| 891 | if ($search_date_start) { |
||
| 892 | $sql .= " AND erd.date >= '" . $db->idate($search_date_start) . "'"; |
||
| 893 | } |
||
| 894 | if ($search_date_end) { |
||
| 895 | $sql .= " AND erd.date <= '" . $db->idate($search_date_end) . "'"; |
||
| 896 | } |
||
| 897 | $sql .= " AND er.entity IN (" . getEntity('expensereport', 0) . ")"; // We don't share object for accountancy |
||
| 898 | |||
| 899 | $sql .= $db->order($sortfield, $sortorder); |
||
| 900 | |||
| 901 | // Count total nb of records |
||
| 902 | $nbtotalofrecords = ''; |
||
| 903 | if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) { |
||
| 904 | $result = $db->query($sql); |
||
| 905 | $nbtotalofrecords = $db->num_rows($result); |
||
| 906 | if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0 |
||
| 907 | $page = 0; |
||
| 908 | $offset = 0; |
||
| 909 | } |
||
| 910 | } |
||
| 911 | |||
| 912 | $sql .= $db->plimit($limit + 1, $offset); |
||
| 913 | |||
| 914 | dol_syslog("accountancy/expensereport/lines.php", LOG_DEBUG); |
||
| 915 | $result = $db->query($sql); |
||
| 916 | if ($result) { |
||
| 917 | $num_lines = $db->num_rows($result); |
||
| 918 | $i = 0; |
||
| 919 | |||
| 920 | $param = ''; |
||
| 921 | if (!empty($contextpage) && $contextpage != $_SERVER['PHP_SELF']) { |
||
| 922 | $param .= '&contextpage=' . urlencode($contextpage); |
||
| 923 | } |
||
| 924 | if ($limit > 0 && $limit != $conf->liste_limit) { |
||
| 925 | $param .= '&limit=' . ((int) $limit); |
||
| 926 | } |
||
| 927 | if ($search_login) { |
||
| 928 | $param .= '&search_login=' . urlencode($search_login); |
||
| 929 | } |
||
| 930 | if ($search_expensereport) { |
||
| 931 | $param .= "&search_expensereport=" . urlencode($search_expensereport); |
||
| 932 | } |
||
| 933 | if ($search_label) { |
||
| 934 | $param .= "&search_label=" . urlencode($search_label); |
||
| 935 | } |
||
| 936 | if ($search_desc) { |
||
| 937 | $param .= "&search_desc=" . urlencode($search_desc); |
||
| 938 | } |
||
| 939 | if ($search_account) { |
||
| 940 | $param .= "&search_account=" . urlencode($search_account); |
||
| 941 | } |
||
| 942 | if ($search_vat) { |
||
| 943 | $param .= "&search_vat=" . urlencode($search_vat); |
||
| 944 | } |
||
| 945 | if ($search_date_startday) { |
||
| 946 | $param .= '&search_date_startday=' . urlencode((string) ($search_date_startday)); |
||
| 947 | } |
||
| 948 | if ($search_date_startmonth) { |
||
| 949 | $param .= '&search_date_startmonth=' . urlencode((string) ($search_date_startmonth)); |
||
| 950 | } |
||
| 951 | if ($search_date_startyear) { |
||
| 952 | $param .= '&search_date_startyear=' . urlencode((string) ($search_date_startyear)); |
||
| 953 | } |
||
| 954 | if ($search_date_endday) { |
||
| 955 | $param .= '&search_date_endday=' . urlencode((string) ($search_date_endday)); |
||
| 956 | } |
||
| 957 | if ($search_date_endmonth) { |
||
| 958 | $param .= '&search_date_endmonth=' . urlencode((string) ($search_date_endmonth)); |
||
| 959 | } |
||
| 960 | if ($search_date_endyear) { |
||
| 961 | $param .= '&search_date_endyear=' . urlencode((string) ($search_date_endyear)); |
||
| 962 | } |
||
| 963 | |||
| 964 | print '<form action="' . $_SERVER['PHP_SELF'] . '" method="post">' . "\n"; |
||
| 965 | print '<input type="hidden" name="action" value="ventil">'; |
||
| 966 | if ($optioncss != '') { |
||
| 967 | print '<input type="hidden" name="optioncss" value="' . $optioncss . '">'; |
||
| 968 | } |
||
| 969 | print '<input type="hidden" name="token" value="' . newToken() . '">'; |
||
| 970 | print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">'; |
||
| 971 | print '<input type="hidden" name="sortfield" value="' . $sortfield . '">'; |
||
| 972 | print '<input type="hidden" name="sortorder" value="' . $sortorder . '">'; |
||
| 973 | print '<input type="hidden" name="page" value="' . $page . '">'; |
||
| 974 | |||
| 975 | // @phan-suppress-next-line PhanPluginSuspiciousParamOrder |
||
| 976 | print_barre_liste($langs->trans("ExpenseReportLinesDone"), $page, $_SERVER['PHP_SELF'], $param, $sortfield, $sortorder, '', $num_lines, $nbtotalofrecords, 'title_accountancy', 0, '', '', $limit); |
||
| 977 | print '<span class="opacitymedium">' . $langs->trans("DescVentilDoneExpenseReport") . '</span><br>'; |
||
| 978 | |||
| 979 | print '<br><div class="inline-block divButAction paddingbottom">' . $langs->trans("ChangeAccount") . ' '; |
||
| 980 | print $formaccounting->select_account($account_parent, 'account_parent', 2, array(), 0, 0, 'maxwidth300 maxwidthonsmartphone valignmiddle'); |
||
| 981 | print '<input type="submit" class="button small valignmiddle" value="' . $langs->trans("ChangeBinding") . '"/></div>'; |
||
| 982 | |||
| 983 | $moreforfilter = ''; |
||
| 984 | |||
| 985 | print '<div class="div-table-responsive">'; |
||
| 986 | print '<table class="tagtable liste' . ($moreforfilter ? " listwithfilterbefore" : "") . '">' . "\n"; |
||
| 987 | |||
| 988 | print '<tr class="liste_titre_filter">'; |
||
| 989 | print '<td class="liste_titre"><input type="text" name="search_login" class="maxwidth50" value="' . $search_login . '"></td>'; |
||
| 990 | print '<td class="liste_titre"></td>'; |
||
| 991 | print '<td><input type="text" class="flat maxwidth50" name="search_expensereport" value="' . dol_escape_htmltag($search_expensereport) . '"></td>'; |
||
| 992 | if (getDolGlobalString('ACCOUNTANCY_USE_EXPENSE_REPORT_VALIDATION_DATE')) { |
||
| 993 | print '<td class="liste_titre"></td>'; |
||
| 994 | } |
||
| 995 | print '<td class="liste_titre center">'; |
||
| 996 | print '<div class="nowrapfordate">'; |
||
| 997 | print $form->selectDate($search_date_start ? $search_date_start : -1, 'search_date_start', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From')); |
||
| 998 | print '</div>'; |
||
| 999 | print '<div class="nowrapfordate">'; |
||
| 1000 | print $form->selectDate($search_date_end ? $search_date_end : -1, 'search_date_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to')); |
||
| 1001 | print '</div>'; |
||
| 1002 | print '</td>'; |
||
| 1003 | print '<td class="liste_titre"><input type="text" class="flat maxwidth50" name="search_label" value="' . dol_escape_htmltag($search_label) . '"></td>'; |
||
| 1004 | print '<td class="liste_titre"><input type="text" class="flat maxwidth50" name="search_desc" value="' . dol_escape_htmltag($search_desc) . '"></td>'; |
||
| 1005 | print '<td class="liste_titre right"><input type="text" class="flat maxwidth50" name="search_amount" value="' . dol_escape_htmltag($search_amount) . '"></td>'; |
||
| 1006 | print '<td class="liste_titre center"><input type="text" class="flat maxwidth50" name="search_vat" size="1" placeholder="%" value="' . dol_escape_htmltag($search_vat) . '"></td>'; |
||
| 1007 | print '<td class="liste_titre"><input type="text" class="flat maxwidth50" name="search_account" value="' . dol_escape_htmltag($search_account) . '"></td>'; |
||
| 1008 | print '<td class="liste_titre center">'; |
||
| 1009 | $searchpicto = $form->showFilterButtons(); |
||
| 1010 | print $searchpicto; |
||
| 1011 | print '</td>'; |
||
| 1012 | print "</tr>\n"; |
||
| 1013 | |||
| 1014 | print '<tr class="liste_titre">'; |
||
| 1015 | print_liste_field_titre("Employees", $_SERVER['PHP_SELF'], "u.login", $param, "", "", $sortfield, $sortorder); |
||
| 1016 | print_liste_field_titre("LineId", $_SERVER['PHP_SELF'], "erd.rowid", "", $param, '', $sortfield, $sortorder); |
||
| 1017 | print_liste_field_titre("ExpenseReport", $_SERVER['PHP_SELF'], "er.ref", "", $param, '', $sortfield, $sortorder); |
||
| 1018 | if (getDolGlobalString('ACCOUNTANCY_USE_EXPENSE_REPORT_VALIDATION_DATE')) { |
||
| 1019 | print_liste_field_titre("DateValidation", $_SERVER['PHP_SELF'], "er.date_valid", "", $param, '', $sortfield, $sortorder, 'center '); |
||
| 1020 | } |
||
| 1021 | print_liste_field_titre("DateOfLine", $_SERVER['PHP_SELF'], "erd.date, erd.rowid", "", $param, '', $sortfield, $sortorder, 'center '); |
||
| 1022 | print_liste_field_titre("TypeFees", $_SERVER['PHP_SELF'], "f.label", "", $param, '', $sortfield, $sortorder); |
||
| 1023 | print_liste_field_titre("Description", $_SERVER['PHP_SELF'], "erd.comments", "", $param, '', $sortfield, $sortorder); |
||
| 1024 | print_liste_field_titre("Amount", $_SERVER['PHP_SELF'], "erd.total_ht", "", $param, '', $sortfield, $sortorder, 'right '); |
||
| 1025 | print_liste_field_titre("VATRate", $_SERVER['PHP_SELF'], "erd.tva_tx", "", $param, '', $sortfield, $sortorder, 'center '); |
||
| 1026 | print_liste_field_titre("AccountAccounting", $_SERVER['PHP_SELF'], "aa.account_number", "", $param, '', $sortfield, $sortorder); |
||
| 1027 | $checkpicto = $form->showCheckAddButtons(); |
||
| 1028 | print_liste_field_titre($checkpicto, '', '', '', '', '', '', '', 'center '); |
||
| 1029 | print "</tr>\n"; |
||
| 1030 | |||
| 1031 | $expensereportstatic = new ExpenseReport($db); |
||
| 1032 | $accountingaccountstatic = new AccountingAccount($db); |
||
| 1033 | $userstatic = new User($db); |
||
| 1034 | |||
| 1035 | $i = 0; |
||
| 1036 | while ($i < min($num_lines, $limit)) { |
||
| 1037 | $objp = $db->fetch_object($result); |
||
| 1038 | |||
| 1039 | $expensereportstatic->ref = $objp->ref; |
||
| 1040 | $expensereportstatic->id = $objp->erid; |
||
| 1041 | |||
| 1042 | $userstatic->id = $objp->userid; |
||
| 1043 | $userstatic->ref = $objp->label; |
||
| 1044 | $userstatic->login = $objp->login; |
||
| 1045 | $userstatic->statut = $objp->statut; |
||
| 1046 | $userstatic->email = $objp->email; |
||
| 1047 | $userstatic->gender = $objp->gender; |
||
| 1048 | $userstatic->firstname = $objp->firstname; |
||
| 1049 | $userstatic->lastname = $objp->lastname; |
||
| 1050 | $userstatic->employee = $objp->employee; |
||
| 1051 | $userstatic->photo = $objp->photo; |
||
| 1052 | |||
| 1053 | $accountingaccountstatic->rowid = $objp->fk_compte; |
||
| 1054 | $accountingaccountstatic->label = $objp->label; |
||
| 1055 | $accountingaccountstatic->labelshort = $objp->labelshort; |
||
| 1056 | $accountingaccountstatic->account_number = $objp->account_number; |
||
| 1057 | |||
| 1058 | print '<tr class="oddeven">'; |
||
| 1059 | |||
| 1060 | // Login |
||
| 1061 | print '<td class="nowraponall">'; |
||
| 1062 | print $userstatic->getNomUrl(-1, '', 0, 0, 24, 1, 'login', '', 1); |
||
| 1063 | print '</td>'; |
||
| 1064 | |||
| 1065 | // Line id |
||
| 1066 | print '<td>' . $objp->rowid . '</td>'; |
||
| 1067 | |||
| 1068 | // Ref Expense report |
||
| 1069 | print '<td>' . $expensereportstatic->getNomUrl(1) . '</td>'; |
||
| 1070 | |||
| 1071 | // Date validation |
||
| 1072 | if (getDolGlobalString('ACCOUNTANCY_USE_EXPENSE_REPORT_VALIDATION_DATE')) { |
||
| 1073 | print '<td class="center">' . dol_print_date($db->jdate($objp->date_valid), 'day') . '</td>'; |
||
| 1074 | } |
||
| 1075 | |||
| 1076 | print '<td class="center">' . dol_print_date($db->jdate($objp->date), 'day') . '</td>'; |
||
| 1077 | |||
| 1078 | // Fees label |
||
| 1079 | print '<td class="tdoverflow">' . ($langs->trans($objp->type_fees_code) == $objp->type_fees_code ? $objp->type_fees_label : $langs->trans(($objp->type_fees_code))) . '</td>'; |
||
| 1080 | |||
| 1081 | // Fees description -- Can be null |
||
| 1082 | print '<td>'; |
||
| 1083 | $text = dolGetFirstLineOfText(dol_string_nohtmltag($objp->comments, 1)); |
||
| 1084 | $trunclength = getDolGlobalString('ACCOUNTING_LENGTH_DESCRIPTION', 32); |
||
| 1085 | print $form->textwithtooltip(dol_trunc($text, $trunclength), $objp->comments); |
||
| 1086 | print '</td>'; |
||
| 1087 | |||
| 1088 | // Amount without taxes |
||
| 1089 | print '<td class="right nowraponall amount">' . price($objp->total_ht) . '</td>'; |
||
| 1090 | |||
| 1091 | // Vat rate |
||
| 1092 | print '<td class="center">' . vatrate($objp->tva_tx . ($objp->vat_src_code ? ' (' . $objp->vat_src_code . ')' : '')) . '</td>'; |
||
| 1093 | |||
| 1094 | // Accounting account affected |
||
| 1095 | print '<td>'; |
||
| 1096 | print $accountingaccountstatic->getNomUrl(0, 1, 1, '', 1); |
||
| 1097 | print ' <a class="editfielda reposition marginleftonly marginrightonly" href="./card.php?id=' . $objp->rowid . '&backtopage=' . urlencode($_SERVER['PHP_SELF'] . ($param ? '?' . $param : '')) . '">'; |
||
| 1098 | print img_edit(); |
||
| 1099 | print '</a></td>'; |
||
| 1100 | print '<td class="center"><input type="checkbox" class="checkforaction" name="changeaccount[]" value="' . $objp->rowid . '"/></td>'; |
||
| 1101 | |||
| 1102 | print "</tr>"; |
||
| 1103 | $i++; |
||
| 1104 | } |
||
| 1105 | if ($num_lines == 0) { |
||
| 1106 | $colspan = 10; |
||
| 1107 | if (getDolGlobalString('ACCOUNTANCY_USE_EXPENSE_REPORT_VALIDATION_DATE')) { |
||
| 1108 | $colspan++; |
||
| 1109 | } |
||
| 1110 | print '<tr><td colspan="' . $colspan . '"><span class="opacitymedium">' . $langs->trans("NoRecordFound") . '</span></td></tr>'; |
||
| 1111 | } |
||
| 1112 | |||
| 1113 | print "</table>"; |
||
| 1114 | print "</div>"; |
||
| 1115 | |||
| 1116 | if ($nbtotalofrecords > $limit) { |
||
| 1117 | print_barre_liste('', $page, $_SERVER['PHP_SELF'], $param, $sortfield, $sortorder, '', $num_lines, $nbtotalofrecords, '', 0, '', '', $limit, 1); |
||
| 1118 | } |
||
| 1119 | |||
| 1120 | print '</form>'; |
||
| 1121 | } else { |
||
| 1122 | print $db->lasterror(); |
||
| 1123 | } |
||
| 1124 | |||
| 1125 | // End of page |
||
| 1126 | llxFooter(); |
||
| 1127 | $db->close(); |
||
| 1128 | } |
||
| 1129 | |||
| 1130 | /** |
||
| 1131 | * \file htdocs/accountancy/expensereport/list.php |
||
| 1132 | * \ingroup Accountancy (Double entries) |
||
| 1133 | * \brief Ventilation page from expense reports |
||
| 1134 | */ |
||
| 1135 | public function list() |
||
| 1664 | } |
||
| 1665 | } |
||
| 1666 |