dolibarr 25.0.0-alpha
html.formmargin.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 2015-2019 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024-2026 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024-2026 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
32{
36 public $db;
37
41 public $error = '';
42
43
49 public function __construct($db)
50 {
51 $this->db = $db;
52 }
53
54
55
64 public function getMarginInfosArray($object, $force_price = false)
65 {
66 global $conf, $db;
67
68 // Default returned array
69 $marginInfos = array(
70 'pa_products' => 0,
71 'pv_products' => 0,
72 'margin_on_products' => 0,
73 'margin_rate_products' => '',
74 'mark_rate_products' => '',
75 'pa_services' => 0,
76 'pv_services' => 0,
77 'margin_on_services' => 0,
78 'margin_rate_services' => '',
79 'mark_rate_services' => '',
80 'pa_total' => 0,
81 'pv_total' => 0,
82 'total_margin' => 0,
83 'total_margin_rate' => '',
84 'total_mark_rate' => ''
85 );
86
87 foreach ($object->lines as $line) {
88 if (empty($line->pa_ht) && isset($line->fk_fournprice) && !$force_price) {
89 require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.product.class.php';
90 $product = new ProductFournisseur($this->db);
91 if ($product->fetch_product_fournisseur_price($line->fk_fournprice)) {
92 $line->pa_ht = $product->fourn_unitprice * (1 - $product->fourn_remise_percent / 100);
93 }
94 }
95
96 // If buy price is not defined (null), we will use the sell price. If defined to 0 (it means it was forced to 0 during insert, for example for a free to get product), we must still use 0.
97 //if ((!isset($line->pa_ht) || $line->pa_ht == 0) && $line->subprice > 0 && (isset($conf->global->ForceBuyingPriceIfNull) && $conf->global->ForceBuyingPriceIfNull > 0)) {
98 if ((!isset($line->pa_ht)) && $line->subprice > 0 && (isset($conf->global->ForceBuyingPriceIfNull) && getDolGlobalInt('ForceBuyingPriceIfNull') > 0)) {
99 $line->pa_ht = $line->subprice * (1 - ($line->remise_percent / 100));
100 }
101
102 $pv = (float) $line->total_ht;
103
104 // $line->pa_ht is always positive in database, so we guess the correct sign
105
106 '@phan-var-force Facture|FactureFournisseur $object';
107 $pa_ht = (($pv < 0 || ($pv == 0 && in_array($object->element, array('facture', 'facture_fourn')) && $object->type == $object::TYPE_CREDIT_NOTE)) ? -$line->pa_ht : $line->pa_ht);
108 '@phan-var-force CommonObject $object';
109
110 if (getDolGlobalInt('INVOICE_USE_SITUATION') == 1) { // Special case for old situation mode
111 '@phan-var-force Facture $object';
113 if (($object->element == 'facture' && $object->type == $object::TYPE_SITUATION)
114 || ($object->element == 'facture' && $object->type == $object::TYPE_CREDIT_NOTE && getDolGlobalInt('INVOICE_USE_SITUATION_CREDIT_NOTE') && $object->situation_counter > 0)) {
115 // We need only the delta between this situation and the previous one to avoid cumulating margins across situation invoices
116 // total_ht is stored cumulatively (e.g. 60% of full price), so we extract only this invoice's share using the delta percent
117 $prevPercent = $line->get_prev_progress($object->id);
118 $deltaPercent = $line->situation_percent - $prevPercent;
119 if ($line->situation_percent > 0) {
120 $pv *= ($deltaPercent / $line->situation_percent);
121 }
122 $pa = $line->qty * $pa_ht * ($deltaPercent / 100);
123 } else {
124 $pa = $line->qty * $pa_ht;
125 }
126 } else {
127 $pa = $line->qty * $pa_ht;
128 }
129
130 // calcul des marges
131 if (isset($line->fk_remise_except) && isset($conf->global->MARGIN_METHODE_FOR_DISCOUNT)) { // remise
132 if (getDolGlobalString('MARGIN_METHODE_FOR_DISCOUNT') == '1') { // global discount treated as product
133 $marginInfos['pa_products'] += $pa;
134 $marginInfos['pv_products'] += $pv;
135 $marginInfos['pa_total'] += $pa;
136 $marginInfos['pv_total'] += $pv;
137 // if credit note, margin = -1 * (abs(selling_price) - buying_price)
138 //if ($pv < 0)
139 //{
140 // $marginInfos['margin_on_products'] += -1 * (abs($pv) - $pa);
141 //}
142 //else
143 $marginInfos['margin_on_products'] += $pv - $pa;
144 } elseif (getDolGlobalString('MARGIN_METHODE_FOR_DISCOUNT') == '2') { // global discount treated as service
145 $marginInfos['pa_services'] += $pa;
146 $marginInfos['pv_services'] += $pv;
147 $marginInfos['pa_total'] += $pa;
148 $marginInfos['pv_total'] += $pv;
149 // if credit note, margin = -1 * (abs(selling_price) - buying_price)
150 //if ($pv < 0)
151 // $marginInfos['margin_on_services'] += -1 * (abs($pv) - $pa);
152 //else
153 $marginInfos['margin_on_services'] += $pv - $pa;
154 } elseif (getDolGlobalString('MARGIN_METHODE_FOR_DISCOUNT') == '3') { // remise globale prise en compte uniqt sur total
155 $marginInfos['pa_total'] += $pa;
156 $marginInfos['pv_total'] += $pv;
157 }
158 } else {
159 $type = $line->product_type ? $line->product_type : $line->fk_product_type;
160 if ($type == 0) { // product
161 $marginInfos['pa_products'] += $pa;
162 $marginInfos['pv_products'] += $pv;
163 $marginInfos['pa_total'] += $pa;
164 $marginInfos['pv_total'] += $pv;
165 // if credit note, margin = -1 * (abs(selling_price) - buying_price)
166 //if ($pv < 0)
167 //{
168 // $marginInfos['margin_on_products'] += -1 * (abs($pv) - $pa);
169 //}
170 //else
171 //{
172 $marginInfos['margin_on_products'] += $pv - $pa;
173 //}
174 } elseif ($type == 1) { // service
175 $marginInfos['pa_services'] += $pa;
176 $marginInfos['pv_services'] += $pv;
177 $marginInfos['pa_total'] += $pa;
178 $marginInfos['pv_total'] += $pv;
179 // if credit note, margin = -1 * (abs(selling_price) - buying_price)
180 //if ($pv < 0)
181 // $marginInfos['margin_on_services'] += -1 * (abs($pv) - $pa);
182 //else
183 $marginInfos['margin_on_services'] += $pv - $pa;
184 }
185 }
186 }
187 if ($marginInfos['pa_products'] > 0) {
188 $marginInfos['margin_rate_products'] = 100 * $marginInfos['margin_on_products'] / $marginInfos['pa_products'];
189 }
190 if ($marginInfos['pv_products'] > 0) {
191 $marginInfos['mark_rate_products'] = 100 * $marginInfos['margin_on_products'] / $marginInfos['pv_products'];
192 }
193
194 if ($marginInfos['pa_services'] > 0) {
195 $marginInfos['margin_rate_services'] = 100 * $marginInfos['margin_on_services'] / $marginInfos['pa_services'];
196 }
197 if ($marginInfos['pv_services'] > 0) {
198 $marginInfos['mark_rate_services'] = 100 * $marginInfos['margin_on_services'] / $marginInfos['pv_services'];
199 }
200
201 // if credit note, margin = -1 * (abs(selling_price) - buying_price)
202 //if ($marginInfos['pv_total'] < 0)
203 // $marginInfos['total_margin'] = -1 * (abs($marginInfos['pv_total']) - $marginInfos['pa_total']);
204 //else
205 $marginInfos['total_margin'] = $marginInfos['pv_total'] - $marginInfos['pa_total'];
206 if ($marginInfos['pa_total'] > 0) {
207 $marginInfos['total_margin_rate'] = 100 * $marginInfos['total_margin'] / $marginInfos['pa_total'];
208 }
209 if ($marginInfos['pv_total'] > 0) {
210 $marginInfos['total_mark_rate'] = 100 * $marginInfos['total_margin'] / $marginInfos['pv_total'];
211 }
212
213 return $marginInfos;
214 }
215
223 public function displayMarginInfos($object, $force_price = false)
224 {
225 global $langs, $user, $hookmanager;
226 global $action;
227
228 if (!empty($user->socid)) {
229 return;
230 }
231
232 if (!$user->hasRight('margins', 'liretous')) {
233 return;
234 }
235
236 $marginInfo = $this->getMarginInfosArray($object, $force_price);
237
238 print '<!-- displayMarginInfos() - Show margin table -->' . "\n";
239
240 $parameters = array('marginInfo' => &$marginInfo);
241 $reshook = $hookmanager->executeHooks('displayMarginInfos', $parameters, $object, $action);
242 if ($reshook < 0) {
243 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
244 } elseif (empty($reshook)) {
245 $hidemargininfos = preg_replace('/[^a-zA-Z0-9_\-]/', '', $_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW'] ?? ''); // Clean cookie
246
247 $buttonToShowHideMargin = '<span id="showMarginInfos" class="linkobject valignmiddle ' . (!empty($hidemargininfos) ? '' : 'hideobject') . '">';
248 $buttonToShowHideMargin .= img_picto($langs->trans("ShowMarginInfos"), 'switch_off', '', 0, 0, 0, '', 'size15x');
249 $buttonToShowHideMargin .= '</span>';
250 $buttonToShowHideMargin .= '<span id="hideMarginInfos" class="linkobject valignmiddle ' . (!empty($hidemargininfos) ? 'hideobject' : '') . '">';
251 $buttonToShowHideMargin .= img_picto($langs->trans("Hide"), 'switch_on_grey', '', 0, 0, 0, '', 'size15x opacitymedium');
252 $buttonToShowHideMargin .= '</span>';
253
254 $buttonToShowHideMargin .= '<script nonce="'.getNonce().'">$(document).ready(function() {';
255 $buttonToShowHideMargin .= '$("span#showMarginInfos").click(function() { console.log("click on showMargininfos"); date = new Date(); date.setTime(date.getTime()+(30*86400000)); document.cookie = "DOLUSER_MARGININFO_HIDE_SHOW=0; expires=" + date.toGMTString() + "; path=/ "; $(".margininfo").show(); $("span#showMarginInfos").addClass("hideobject"); $("span#hideMarginInfos").removeClass("hideobject"); });';
256 $buttonToShowHideMargin .= '$("span#hideMarginInfos").click(function() { console.log("click on hideMarginInfos"); date = new Date(); date.setTime(date.getTime()+(30*86400000)); document.cookie = "DOLUSER_MARGININFO_HIDE_SHOW=1; expires=" + date.toGMTString() + "; path=/ "; $(".margininfo").hide(); $("span#hideMarginInfos").addClass("hideobject"); $("span#showMarginInfos").removeClass("hideobject"); });';
257 if (!empty($hidemargininfos)) {
258 $buttonToShowHideMargin .= 'console.log("hide the margin info"); $(".margininfo").hide();';
259 }
260 $buttonToShowHideMargin .= '});</script>';
261
262 print '<div class="div-table-responsive-no-min">';
263
264 print '<table class="noborder margintable centpercent" id="margintable">';
265 print '<tr class="liste_titre">';
266 print '<td class="liste_titre">' . $langs->trans('Margins') . ' ' . $buttonToShowHideMargin . '</td>';
267 print '<td class="liste_titre right margininfo'.(empty($_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW']) ? '' : ' hideobject').'">' . $langs->trans('SellingPrice') . '</td>';
268 if (getDolGlobalString('MARGIN_TYPE') == "1") {
269 print '<td class="liste_titre right margininfo'.(empty($_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW']) ? '' : ' hideobject').'">' . $langs->trans('BuyingPrice') . '</td>';
270 } else {
271 print '<td class="liste_titre right margininfo'.(empty($_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW']) ? '' : ' hideobject').'">' . $langs->trans('CostPrice') . '</td>';
272 }
273 print '<td class="liste_titre right margininfo'.(empty($_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW']) ? '' : ' hideobject').'">' . $langs->trans('Margin') . '</td>';
274 if (getDolGlobalString('DISPLAY_MARGIN_RATES')) {
275 print '<td class="liste_titre right margininfo'.(empty($_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW']) ? '' : ' hideobject').'">' . $langs->trans('MarginRate') . '</td>';
276 }
277 if (getDolGlobalString('DISPLAY_MARK_RATES')) {
278 print '<td class="liste_titre right margininfo'.(empty($_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW']) ? '' : ' hideobject').'">' . $langs->trans('MarkRate') . '</td>';
279 }
280 print '</tr>';
281
282 if (isModEnabled("product")) {
283 //if ($marginInfo['margin_on_products'] != 0 && $marginInfo['margin_on_services'] != 0) {
284 print '<tr class="oddeven margininfo'.(empty($_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW']) ? '' : ' hideobject').'">';
285 print '<td>' . $langs->trans('MarginOnProducts') . '</td>';
286 print '<td class="right">' . price($marginInfo['pv_products']) . '</td>';
287 print '<td class="right">' . price($marginInfo['pa_products']) . '</td>';
288 print '<td class="right">' . price($marginInfo['margin_on_products']) . '</td>';
289 if (getDolGlobalString('DISPLAY_MARGIN_RATES')) {
290 print '<td class="right">' . (($marginInfo['margin_rate_products'] == '') ? '' : price($marginInfo['margin_rate_products'], 0, '', 0, 0, 2) . '%') . '</td>';
291 }
292 if (getDolGlobalString('DISPLAY_MARK_RATES')) {
293 print '<td class="right">' . (($marginInfo['mark_rate_products'] == '') ? '' : price($marginInfo['mark_rate_products'], 0, '', 0, 0, 2) . '%') . '</td>';
294 }
295 print '</tr>';
296 }
297
298 if (isModEnabled("service")) {
299 print '<tr class="oddeven margininfo'.(empty($_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW']) ? '' : ' hideobject').'">';
300 print '<td>' . $langs->trans('MarginOnServices') . '</td>';
301 print '<td class="right">' . price($marginInfo['pv_services']) . '</td>';
302 print '<td class="right">' . price($marginInfo['pa_services']) . '</td>';
303 print '<td class="right">' . price($marginInfo['margin_on_services']) . '</td>';
304 if (getDolGlobalString('DISPLAY_MARGIN_RATES')) {
305 print '<td class="right">' . (($marginInfo['margin_rate_services'] == '') ? '' : price($marginInfo['margin_rate_services'], 0, '', 0, 0, 2) . '%') . '</td>';
306 }
307 if (getDolGlobalString('DISPLAY_MARK_RATES')) {
308 print '<td class="right">' . (($marginInfo['mark_rate_services'] == '') ? '' : price($marginInfo['mark_rate_services'], 0, '', 0, 0, 2) . '%') . '</td>';
309 }
310 print '</tr>';
311 }
312
313 if (isModEnabled("product") && isModEnabled("service")) {
314 print '<tr class="liste_total margininfo'.(empty($_COOKIE['DOLUSER_MARGININFO_HIDE_SHOW']) ? '' : ' hideobject').'">';
315 print '<td>' . $langs->trans('TotalMargin') . '</td>';
316 print '<td class="right">' . price($marginInfo['pv_total']) . '</td>';
317 print '<td class="right">' . price($marginInfo['pa_total']) . '</td>';
318 print '<td class="right">' . price($marginInfo['total_margin']) . '</td>';
319 if (getDolGlobalString('DISPLAY_MARGIN_RATES')) {
320 print '<td class="right">' . (($marginInfo['total_margin_rate'] == '') ? '' : price($marginInfo['total_margin_rate'], 0, '', 0, 0, 2) . '%') . '</td>';
321 }
322 if (getDolGlobalString('DISPLAY_MARK_RATES')) {
323 print '<td class="right">' . (($marginInfo['total_mark_rate'] == '') ? '' : price($marginInfo['total_mark_rate'], 0, '', 0, 0, 2) . '%') . '</td>';
324 }
325 print '</tr>';
326 }
327 print $hookmanager->resPrint;
328 print '</table>';
329 print '</div>';
330 } elseif ($reshook > 0) {
331 print $hookmanager->resPrint;
332 }
333 }
334}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
Class to manage "other" html components Only common components are here.
displayMarginInfos($object, $force_price=false)
Show the array with all margin infos.
__construct($db)
Constructor.
Class to manage predefined suppliers products.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
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, $allowothertags=array())
Show picto whatever it's its name (generic function)
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.