dolibarr 21.0.0-alpha
paiement_salary.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004-2014 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2016-2018 Frédéric France <frederic.france@netlogic.fr>
4 * Copyright (C) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Load Dolibarr environment
28require '../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.'/salaries/class/salary.class.php';
30require_once DOL_DOCUMENT_ROOT.'/salaries/class/paymentsalary.class.php';
31require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
32
33// Load translation files required by the page
34$langs->loadLangs(array("banks", "bills"));
35
36$action = GETPOST('action', 'alpha');
37$cancel = GETPOST('cancel', 'alpha');
38$confirm = GETPOST('confirm', 'alpha');
39
40$id = GETPOSTINT('id');
41$ref = GETPOST('ref', 'alpha');
42$amounts = array();
43
44$object = new Salary($db);
45if ($id > 0 || !empty($ref)) {
46 $object->fetch($id, $ref);
47}
48
49// Security check
50$socid = GETPOSTINT("socid");
51if ($user->socid > 0) {
52 $socid = $user->socid;
53}
54restrictedArea($user, 'salaries', $object->id, 'salary', '');
55
56
57/*
58 * Actions
59 */
60
61if (($action == 'add_payment' || ($action == 'confirm_paiement' && $confirm == 'yes')) && $user->hasRight('salaries', 'write')) {
62 $error = 0;
63
64 if ($cancel) {
65 $loc = DOL_URL_ROOT.'/salaries/card.php?id='.$id;
66 header("Location: ".$loc);
67 exit;
68 }
69
70 $datepaye = dol_mktime(GETPOSTINT("rehour"), GETPOSTINT("remin"), GETPOSTINT("resec"), GETPOSTINT("remonth"), GETPOSTINT("reday"), GETPOSTINT("reyear"), 'tzuserrel');
71
72 if (!(GETPOSTINT("paiementtype") > 0)) {
73 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("PaymentMode")), null, 'errors');
74 $error++;
75 $action = 'create';
76 }
77 if ($datepaye == '') {
78 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Date")), null, 'errors');
79 $error++;
80 $action = 'create';
81 }
82 if (isModEnabled("bank") && !(GETPOSTINT("accountid") > 0)) {
83 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("AccountToDebit")), null, 'errors');
84 $error++;
85 $action = 'create';
86 }
87
88 // Read possible payments
89 foreach ($_POST as $key => $value) {
90 if (substr($key, 0, 7) == 'amount_') {
91 $other_chid = substr($key, 7);
92 $amounts[$other_chid] = price2num(GETPOST($key));
93 }
94 }
95
96 if ($amounts[key($amounts)] <= 0) {
97 $error++;
98 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Amount")), null, 'errors');
99 $action = 'create';
100 }
101
102 if (!$error) {
103 $paymentid = 0;
104
105 if (!$error) {
106 $db->begin();
107
108 // Create a line of payments
109 $paiement = new PaymentSalary($db);
110 $paiement->fk_salary = $id;
111 $paiement->chid = $id; // deprecated
112 $paiement->datep = $datepaye;
113 $paiement->amounts = $amounts; // Tableau de montant
114 $paiement->fk_typepayment = GETPOSTINT("paiementtype");
115 $paiement->num_payment = GETPOST("num_payment", 'alphanohtml');
116 $paiement->note = GETPOST("note", 'restricthtml');
117 $paiement->note_private = GETPOST("note", 'restricthtml');
118
119 if (!$error) {
120 $paymentid = $paiement->create($user, (GETPOST('closepaidsalary') == 'on' ? 1 : 0));
121 if ($paymentid < 0) {
122 $error++;
123 setEventMessages($paiement->error, null, 'errors');
124 $action = 'create';
125 }
126 }
127
128 if (!$error) {
129 $result = $paiement->addPaymentToBank($user, 'payment_salary', '(SalaryPayment)', GETPOSTINT('accountid'), '', '');
130
131 if (!($result > 0)) {
132 $error++;
133 setEventMessages($paiement->error, null, 'errors');
134 $action = 'create';
135 }
136 }
137
138 if (!$error) {
139 $db->commit();
140 $loc = DOL_URL_ROOT.'/salaries/card.php?id='.$id;
141 header('Location: '.$loc);
142 exit;
143 } else {
144 $db->rollback();
145 }
146 }
147 }
148}
149
150
151/*
152 * View
153 */
154
155$form = new Form($db);
156
157$help_url = '';
158
159llxHeader('', '', $help_url);
160
161$salary = $object;
162
163// Formulaire de creation d'un paiement de charge
164if ($action == 'create') {
165 $salary->accountid = $salary->fk_account ? $salary->fk_account : $salary->accountid;
166 $salary->paiementtype = $salary->mode_reglement_id ? $salary->mode_reglement_id : $salary->paiementtype;
167
168 $total = $salary->amount;
169 if (!empty($conf->use_javascript_ajax)) {
170 print "\n".'<script type="text/javascript">';
171
172 //Add js for AutoFill
173 print ' $(document).ready(function () {';
174 print ' $(".AutoFillAmount").on(\'click touchstart\', function(){
175 var amount = $(this).data("value");
176 document.getElementById($(this).data(\'rowid\')).value = amount ;
177 });';
178 print ' });'."\n";
179
180 print ' </script>'."\n";
181 }
182
183 print load_fiche_titre($langs->trans("DoPayment"));
184 print "<br>\n";
185
186 print '<form name="add_payment" action="'.$_SERVER['PHP_SELF'].'" method="post">';
187 print '<input type="hidden" name="token" value="'.newToken().'">';
188 print '<input type="hidden" name="id" value="'.$id.'">';
189 print '<input type="hidden" name="chid" value="'.$id.'">';
190 print '<input type="hidden" name="action" value="add_payment">';
191
192 print dol_get_fiche_head();
193
194 print '<table class="border centpercent">';
195
196 print '<tr><td class="titlefieldcreate">'.$langs->trans("Ref").'</td><td><a href="'.DOL_URL_ROOT.'/salaries/card.php?id='.$id.'">'.$id.'</a></td></tr>';
197 print '<tr><td>'.$langs->trans("DateStart")."</td><td>".dol_print_date($salary->datesp, 'day')."</td></tr>\n";
198 print '<tr><td>'.$langs->trans("DateEnd")."</td><td>".dol_print_date($salary->dateep, 'day')."</td></tr>\n";
199 print '<tr><td>'.$langs->trans("Label").'</td><td>'.$salary->label."</td></tr>\n";
200 /*print '<tr><td>'.$langs->trans("DateDue")."</td><td>".dol_print_date($salary->date_ech,'day')."</td></tr>\n";
201 print '<tr><td>'.$langs->trans("Amount")."</td><td>".price($salary->amount,0,$outputlangs,1,-1,-1,$conf->currency).'</td></tr>';*/
202
203 $sql = "SELECT sum(p.amount) as total";
204 $sql .= " FROM ".MAIN_DB_PREFIX."payment_salary as p";
205 $sql .= " WHERE p.fk_salary = ".((int) $id);
206 $resql = $db->query($sql);
207 if ($resql) {
208 $obj = $db->fetch_object($resql);
209 $sumpaid = $obj->total;
210 $db->free($resql);
211 }
212 /*print '<tr><td>'.$langs->trans("AlreadyPaid").'</td><td>'.price($sumpaid,0,$outputlangs,1,-1,-1,$conf->currency).'</td></tr>';
213 print '<tr><td class="tdtop">'.$langs->trans("RemainderToPay").'</td><td>'.price($total-$sumpaid,0,$outputlangs,1,-1,-1,$conf->currency).'</td></tr>';*/
214
215 print '<tr><td class="fieldrequired">'.$langs->trans("Date").'</td><td>';
216 $datepaye = dol_mktime(GETPOSTINT("rehour"), GETPOSTINT("remin"), GETPOSTINT("resec"), GETPOSTINT("remonth"), GETPOSTINT("reday"), GETPOSTINT("reyear"));
217 $datepayment = !getDolGlobalString('MAIN_AUTOFILL_DATE') ? (GETPOST("remonth") ? $datepaye : -1) : '';
218 print $form->selectDate($datepayment, '', 1, 1, 0, "add_payment", 1, 1, 0, '', '', $salary->dateep, '', 1, $langs->trans("DateEnd"));
219 print "</td>";
220 print '</tr>';
221
222 print '<tr><td class="fieldrequired">'.$langs->trans("PaymentMode").'</td><td>';
223 $form->select_types_paiements(GETPOSTISSET("paiementtype") ? GETPOST("paiementtype") : $salary->type_payment, "paiementtype");
224 print "</td>\n";
225 print '</tr>';
226
227 print '<tr>';
228 print '<td class="fieldrequired">'.$langs->trans('AccountToDebit').'</td>';
229 print '<td>';
230 print img_picto('', 'bank_account', 'class="pictofixedwidth"');
231 $form->select_comptes(GETPOSTISSET("accountid") ? GETPOSTINT("accountid") : $salary->accountid, "accountid", 0, '', 1); // Show opend bank account list
232 print '</td></tr>';
233
234 // Number
235 print '<tr><td>'.$langs->trans('Numero');
236 print ' <em>('.$langs->trans("ChequeOrTransferNumber").')</em>';
237 print '</td>';
238 print '<td><input name="num_payment" type="text" value="'.GETPOST('num_payment', 'alphanohtml').'"></td></tr>'."\n";
239
240 print '<tr>';
241 print '<td class="tdtop">'.$langs->trans("Comments").'</td>';
242 print '<td class="tdtop"><textarea name="note" wrap="soft" cols="60" rows="'.ROWS_3.'">';
243 print GETPOST('note');
244 print '</textarea></td>';
245 print '</tr>';
246
247 print '</table>';
248
249 print dol_get_fiche_end();
250
251 /*
252 * Autres charges impayees
253 */
254 $num = 1;
255 $i = 0;
256
257 print '<table class="noborder centpercent">';
258 print '<tr class="liste_titre">';
259 //print '<td>'.$langs->trans("SocialContribution").'</td>';
260 print '<td class="left">'.$langs->trans("DateEnd").'</td>';
261 print '<td class="right">'.$langs->trans("Amount").'</td>';
262 print '<td class="right">'.$langs->trans("AlreadyPaid").'</td>';
263 print '<td class="right">'.$langs->trans("RemainderToPay").'</td>';
264 print '<td class="center">'.$langs->trans("Amount").'</td>';
265 print "</tr>\n";
266
267 $total = 0;
268 $total_ttc = 0.;
269 $totalrecu = 0;
270
271 while ($i < $num) {
272 $objp = $salary;
273
274 print '<tr class="oddeven">';
275
276 if ($objp->dateep > 0) {
277 print '<td class="left">'.dol_print_date($objp->dateep, 'day').'</td>'."\n";
278 } else {
279 print '<td align="center"><b>!!!</b></td>'."\n";
280 }
281
282 print '<td class="right">'.price($objp->amount)."</td>";
283
284 print '<td class="right">'.price($sumpaid)."</td>";
285
286 print '<td class="right">'.price((float) $objp->amount - $sumpaid)."</td>";
287
288 print '<td class="center">';
289 if ($sumpaid < $objp->amount) {
290 $namef = "amount_".$objp->id;
291 $nameRemain = "remain_".$objp->id;
292 /* Disabled, we autofil the amount with remain to pay by default
293 if (!empty($conf->use_javascript_ajax)) {
294 print img_picto("Auto fill", 'rightarrow', "class='AutoFillAmount' data-rowid='".$namef."' data-value='".($objp->amount - $sumpaid)."'");
295 } */
296 $valuetoshow = GETPOSTISSET($namef) ? GETPOST($namef) : ((float) $objp->amount - $sumpaid);
297
298 print '<input type=hidden class="sum_remain" name="'.$nameRemain.'" value="'.$valuetoshow.'">';
299 print '<input type="text" class="right width75" name="'.$namef.'" id="'.$namef.'" value="'.$valuetoshow.'">';
300 } else {
301 print '-';
302 }
303 print "</td>";
304
305 print "</tr>\n";
306 $total += $objp->total;
307 $total_ttc += $objp->total_ttc;
308 $totalrecu += $objp->am;
309 $i++;
310 }
311 if ($i > 1) {
312 // Print total
313 print '<tr class="oddeven">';
314 print '<td colspan="2" class="left">'.$langs->trans("Total").':</td>';
315 print '<td class="right"><b>'.price($total_ttc).'</b></td>';
316 print '<td class="right"><b>'.price($totalrecu).'</b></td>';
317 print '<td class="right"><b>'.price($total_ttc - $totalrecu).'</b></td>';
318 print '<td align="center">&nbsp;</td>';
319 print "</tr>\n";
320 }
321
322 print "</table>";
323
324 print '<br>';
325
326 // Bouton Save payment
327 print '<div class="center">';
328 print '<div class="paddingbottom"><input type="checkbox" checked name="closepaidsalary" id="closepaidsalary"><label for="closepaidsalary">'.$langs->trans("ClosePaidSalaryAutomatically").'</label></div>';
329 print $form->buttonsSaveCancel("ToMakePayment", "Cancel", '', true);
330 print '</div>';
331
332
333 print "</form>\n";
334}
335
336llxFooter();
337$db->close();
$id
Definition account.php:39
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
Class to manage payments of salaries.
Class to manage salary payments.
llxFooter()
Footer empty.
Definition document.php:107
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.