64 public function getMarginInfosArray(
$object, $force_price =
false)
72 'margin_on_products' => 0,
73 'margin_rate_products' =>
'',
74 'mark_rate_products' =>
'',
77 'margin_on_services' => 0,
78 'margin_rate_services' =>
'',
79 'mark_rate_services' =>
'',
83 'total_margin_rate' =>
'',
84 'total_mark_rate' =>
''
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';
91 if ($product->fetch_product_fournisseur_price($line->fk_fournprice)) {
92 $line->pa_ht = $product->fourn_unitprice * (1 - $product->fourn_remise_percent / 100);
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));
102 $pv = $line->total_ht;
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';
111 '@phan-var-force Facture $object';
113 if ((
$object->element ==
'facture' &&
$object->type == $object::TYPE_SITUATION)
116 $pa = $line->qty * $pa_ht * ($line->situation_percent / 100);
118 $pa = $line->qty * $pa_ht;
121 $pa = $line->qty * $pa_ht;
125 if (isset($line->fk_remise_except) && isset(
$conf->global->MARGIN_METHODE_FOR_DISCOUNT)) {
127 $marginInfos[
'pa_products'] += $pa;
128 $marginInfos[
'pv_products'] += $pv;
129 $marginInfos[
'pa_total'] += $pa;
130 $marginInfos[
'pv_total'] += $pv;
137 $marginInfos[
'margin_on_products'] += $pv - $pa;
139 $marginInfos[
'pa_services'] += $pa;
140 $marginInfos[
'pv_services'] += $pv;
141 $marginInfos[
'pa_total'] += $pa;
142 $marginInfos[
'pv_total'] += $pv;
147 $marginInfos[
'margin_on_services'] += $pv - $pa;
149 $marginInfos[
'pa_total'] += $pa;
150 $marginInfos[
'pv_total'] += $pv;
153 $type = $line->product_type ? $line->product_type : $line->fk_product_type;
155 $marginInfos[
'pa_products'] += $pa;
156 $marginInfos[
'pv_products'] += $pv;
157 $marginInfos[
'pa_total'] += $pa;
158 $marginInfos[
'pv_total'] += $pv;
166 $marginInfos[
'margin_on_products'] += $pv - $pa;
168 } elseif ($type == 1) {
169 $marginInfos[
'pa_services'] += $pa;
170 $marginInfos[
'pv_services'] += $pv;
171 $marginInfos[
'pa_total'] += $pa;
172 $marginInfos[
'pv_total'] += $pv;
177 $marginInfos[
'margin_on_services'] += $pv - $pa;
181 if ($marginInfos[
'pa_products'] > 0) {
182 $marginInfos[
'margin_rate_products'] = 100 * $marginInfos[
'margin_on_products'] / $marginInfos[
'pa_products'];
184 if ($marginInfos[
'pv_products'] > 0) {
185 $marginInfos[
'mark_rate_products'] = 100 * $marginInfos[
'margin_on_products'] / $marginInfos[
'pv_products'];
188 if ($marginInfos[
'pa_services'] > 0) {
189 $marginInfos[
'margin_rate_services'] = 100 * $marginInfos[
'margin_on_services'] / $marginInfos[
'pa_services'];
191 if ($marginInfos[
'pv_services'] > 0) {
192 $marginInfos[
'mark_rate_services'] = 100 * $marginInfos[
'margin_on_services'] / $marginInfos[
'pv_services'];
199 $marginInfos[
'total_margin'] = $marginInfos[
'pv_total'] - $marginInfos[
'pa_total'];
200 if ($marginInfos[
'pa_total'] > 0) {
201 $marginInfos[
'total_margin_rate'] = 100 * $marginInfos[
'total_margin'] / $marginInfos[
'pa_total'];
203 if ($marginInfos[
'pv_total'] > 0) {
204 $marginInfos[
'total_mark_rate'] = 100 * $marginInfos[
'total_margin'] / $marginInfos[
'pv_total'];
219 global $langs, $user, $hookmanager;
222 if (!empty($user->socid)) {
226 if (!$user->hasRight(
'margins',
'liretous')) {
230 $marginInfo = $this->getMarginInfosArray(
$object, $force_price);
232 print
'<!-- displayMarginInfos() - Show margin table -->' .
"\n";
234 $parameters = array(
'marginInfo' => &$marginInfo);
235 $reshook = $hookmanager->executeHooks(
'displayMarginInfos', $parameters,
$object, $action);
238 } elseif (empty($reshook)) {
239 $hidemargininfos = preg_replace(
'/[^a-zA-Z0-9_\-]/',
'', $_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW'] ??
'');
241 $buttonToShowHideMargin =
'<span id="showMarginInfos" class="linkobject valignmiddle ' . (!empty($hidemargininfos) ?
'' :
'hideobject') .
'">';
242 $buttonToShowHideMargin .=
img_picto($langs->trans(
"ShowMarginInfos"),
'switch_off',
'', 0, 0, 0,
'',
'size15x');
243 $buttonToShowHideMargin .=
'</span>';
244 $buttonToShowHideMargin .=
'<span id="hideMarginInfos" class="linkobject valignmiddle ' . (!empty($hidemargininfos) ?
'hideobject' :
'') .
'">';
245 $buttonToShowHideMargin .=
img_picto($langs->trans(
"Hide"),
'switch_on_grey',
'', 0, 0, 0,
'',
'size15x opacitymedium');
246 $buttonToShowHideMargin .=
'</span>';
248 $buttonToShowHideMargin .=
'<script nonce="'.getNonce().
'">$(document).ready(function() {';
249 $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"); });';
250 $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"); });';
251 if (!empty($hidemargininfos)) {
252 $buttonToShowHideMargin .=
'console.log("hide the margin info"); $(".margininfo").hide();';
254 $buttonToShowHideMargin .=
'});</script>';
256 print
'<div class="div-table-responsive-no-min">';
258 print
'<table class="noborder margintable centpercent" id="margintable">';
259 print
'<tr class="liste_titre">';
260 print
'<td class="liste_titre">' . $langs->trans(
'Margins') .
' ' . $buttonToShowHideMargin .
'</td>';
261 print
'<td class="liste_titre right margininfo'.(empty($_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW']) ?
'' :
' hideobject').
'">' . $langs->trans(
'SellingPrice') .
'</td>';
263 print
'<td class="liste_titre right margininfo'.(empty($_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW']) ?
'' :
' hideobject').
'">' . $langs->trans(
'BuyingPrice') .
'</td>';
265 print
'<td class="liste_titre right margininfo'.(empty($_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW']) ?
'' :
' hideobject').
'">' . $langs->trans(
'CostPrice') .
'</td>';
267 print
'<td class="liste_titre right margininfo'.(empty($_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW']) ?
'' :
' hideobject').
'">' . $langs->trans(
'Margin') .
'</td>';
269 print
'<td class="liste_titre right margininfo'.(empty($_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW']) ?
'' :
' hideobject').
'">' . $langs->trans(
'MarginRate') .
'</td>';
272 print
'<td class="liste_titre right margininfo'.(empty($_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW']) ?
'' :
' hideobject').
'">' . $langs->trans(
'MarkRate') .
'</td>';
276 if (isModEnabled(
"product")) {
278 print
'<tr class="oddeven margininfo'.(empty($_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW']) ?
'' :
' hideobject').
'">';
279 print
'<td>' . $langs->trans(
'MarginOnProducts') .
'</td>';
280 print
'<td class="right">' .
price($marginInfo[
'pv_products']) .
'</td>';
281 print
'<td class="right">' .
price($marginInfo[
'pa_products']) .
'</td>';
282 print
'<td class="right">' .
price($marginInfo[
'margin_on_products']) .
'</td>';
284 print
'<td class="right">' . (($marginInfo[
'margin_rate_products'] ==
'') ?
'' :
price($marginInfo[
'margin_rate_products'], 0,
'', 0, 0, 2) .
'%') .
'</td>';
287 print
'<td class="right">' . (($marginInfo[
'mark_rate_products'] ==
'') ?
'' :
price($marginInfo[
'mark_rate_products'], 0,
'', 0, 0, 2) .
'%') .
'</td>';
292 if (isModEnabled(
"service")) {
293 print
'<tr class="oddeven margininfo'.(empty($_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW']) ?
'' :
' hideobject').
'">';
294 print
'<td>' . $langs->trans(
'MarginOnServices') .
'</td>';
295 print
'<td class="right">' .
price($marginInfo[
'pv_services']) .
'</td>';
296 print
'<td class="right">' .
price($marginInfo[
'pa_services']) .
'</td>';
297 print
'<td class="right">' .
price($marginInfo[
'margin_on_services']) .
'</td>';
299 print
'<td class="right">' . (($marginInfo[
'margin_rate_services'] ==
'') ?
'' :
price($marginInfo[
'margin_rate_services'], 0,
'', 0, 0, 2) .
'%') .
'</td>';
302 print
'<td class="right">' . (($marginInfo[
'mark_rate_services'] ==
'') ?
'' :
price($marginInfo[
'mark_rate_services'], 0,
'', 0, 0, 2) .
'%') .
'</td>';
307 if (isModEnabled(
"product") && isModEnabled(
"service")) {
308 print
'<tr class="liste_total margininfo'.(empty($_COOKIE[
'DOLUSER_MARGININFO_HIDE_SHOW']) ?
'' :
' hideobject').
'">';
309 print
'<td>' . $langs->trans(
'TotalMargin') .
'</td>';
310 print
'<td class="right">' .
price($marginInfo[
'pv_total']) .
'</td>';
311 print
'<td class="right">' .
price($marginInfo[
'pa_total']) .
'</td>';
312 print
'<td class="right">' .
price($marginInfo[
'total_margin']) .
'</td>';
314 print
'<td class="right">' . (($marginInfo[
'total_margin_rate'] ==
'') ?
'' :
price($marginInfo[
'total_margin_rate'], 0,
'', 0, 0, 2) .
'%') .
'</td>';
317 print
'<td class="right">' . (($marginInfo[
'total_mark_rate'] ==
'') ?
'' :
price($marginInfo[
'total_mark_rate'], 0,
'', 0, 0, 2) .
'%') .
'</td>';
321 print $hookmanager->resPrint;
324 } elseif ($reshook > 0) {
325 print $hookmanager->resPrint;
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Class to manage predefined suppliers products.
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)
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.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...