Skip to content
Snippets Groups Projects
Commit bcf9bdc9 authored by Charles Benke's avatar Charles Benke
Browse files

Update card.php

new setting vars FICHINTER_USE_SERVICE_DURATION
parent 2164729b
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
* Copyright (C) 2011-2013 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
* Copyright (C) 2014 Ferran Marcet <fmarcet@2byte.es>
* Copyright (C) 201 Charlie Benke <charlies@patas-monkey.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -250,22 +251,12 @@ else if ($action == 'add' && $user->rights->ficheinter->creer)
$prod->getMultiLangs();
// We show if duration is present on service (so we get it)
$prod->fetch($lines[$i]->fk_product);
if ($prod->duration_value)
if ($prod->duration_value && $prod->duration_unit == 'h' && $conf->global->FICHINTER_USE_SERVICE_DURATION)
{
switch($prod->duration_unit)
{
case 'h':
$durationproduct=$prod->duration_value * 3600 * $lines[$i]->qty;
break;
case 'd':
$durationproduct=$prod->duration_value * 3600 * 24 * $lines[$i]->qty;
break;
case 'w':
$durationproduct=$prod->duration_value * 3600 * 24 * 7 * $lines[$i]->qty;
break;
}
$durationproduct=$prod->duration_value * 3600 * $lines[$i]->qty;
}
else
$durationproduct=3600;
$outputlangs = $langs;
$newlang='';
if (empty($newlang) && GETPOST('lang_id')) $newlang=GETPOST('lang_id');
......@@ -294,11 +285,11 @@ else if ($action == 'add' && $user->rights->ficheinter->creer)
$date_intervention=dol_mktime(0,0,0,$timearray['mon'],$timearray['mday'],$timearray['year']);
if ($product_type == 1)
{ //service
$duration = ($durationproduct ? $durationproduct : 3600);
$duration = $durationproduct;
}
else
{ //product
$duration = 0;
$duration = 0;
}
$predef = '';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment