Qual: doxygen
Fix: Preselected field was not selected
This commit is contained in:
parent
37b8f855e1
commit
40a4bcec04
@ -32,6 +32,8 @@ $langs->load("orders");
|
|||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
$langs->load("companies");
|
$langs->load("companies");
|
||||||
|
|
||||||
|
$action=GETPOST('action');
|
||||||
|
|
||||||
// Security check
|
// Security check
|
||||||
$socid = GETPOST("id");
|
$socid = GETPOST("id");
|
||||||
if ($user->societe_id > 0)
|
if ($user->societe_id > 0)
|
||||||
@ -50,7 +52,7 @@ if (GETPOST('cancel') && GETPOST('backtopage'))
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (GETPOST("action") == 'confirm_split' && GETPOST("confirm") == 'yes')
|
if ($action == 'confirm_split' && GETPOST("confirm") == 'yes')
|
||||||
{
|
{
|
||||||
//if ($user->rights->societe->creer)
|
//if ($user->rights->societe->creer)
|
||||||
//if ($user->rights->facture->creer)
|
//if ($user->rights->facture->creer)
|
||||||
@ -127,7 +129,7 @@ if (GETPOST("action") == 'confirm_split' && GETPOST("confirm") == 'yes')
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (GETPOST("action") == 'setremise')
|
if ($action == 'setremise')
|
||||||
{
|
{
|
||||||
//if ($user->rights->societe->creer)
|
//if ($user->rights->societe->creer)
|
||||||
//if ($user->rights->facture->creer)
|
//if ($user->rights->facture->creer)
|
||||||
@ -145,13 +147,13 @@ if (GETPOST("action") == 'setremise')
|
|||||||
{
|
{
|
||||||
$soc = new Societe($db);
|
$soc = new Societe($db);
|
||||||
$soc->fetch($_GET["id"]);
|
$soc->fetch($_GET["id"]);
|
||||||
$soc->set_remise_except($_POST["amount_ht"],$user,$_POST["desc"],$_POST["tva_tx"]);
|
$discountid=$soc->set_remise_except($_POST["amount_ht"],$user,$_POST["desc"],$_POST["tva_tx"]);
|
||||||
|
|
||||||
if ($result > 0)
|
if ($discountid > 0)
|
||||||
{
|
{
|
||||||
if (GETPOST("backtopage"))
|
if (GETPOST("backtopage"))
|
||||||
{
|
{
|
||||||
Header("Location: ".GETPOST("backtopage"));
|
Header("Location: ".GETPOST("backtopage").'&discountid='.$discountid);
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
@ -2225,12 +2225,12 @@ else
|
|||||||
// Remise dispo de type remise fixe (not credit note)
|
// Remise dispo de type remise fixe (not credit note)
|
||||||
$filter='fk_facture_source IS NULL';
|
$filter='fk_facture_source IS NULL';
|
||||||
print '<br>';
|
print '<br>';
|
||||||
$form->form_remise_dispo($_SERVER["PHP_SELF"].'?facid='.$object->id, 0, 'remise_id',$soc->id, $absolute_discount, $filter, $resteapayer, ' ('.$addabsolutediscount.')');
|
$form->form_remise_dispo($_SERVER["PHP_SELF"].'?facid='.$object->id, GETPOST('discountid'), 'remise_id', $soc->id, $absolute_discount, $filter, $resteapayer, ' ('.$addabsolutediscount.')');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ($absolute_creditnote > 0) // If not linke will be added later
|
if ($absolute_creditnote > 0) // If not, link will be added later
|
||||||
{
|
{
|
||||||
if ($object->statut == 0 && $object->type != 2 && $object->type != 3) print ' ('.$addabsolutediscount.')<br>';
|
if ($object->statut == 0 && $object->type != 2 && $object->type != 3) print ' ('.$addabsolutediscount.')<br>';
|
||||||
else print '.';
|
else print '.';
|
||||||
|
|||||||
@ -2703,14 +2703,14 @@ class Form
|
|||||||
/**
|
/**
|
||||||
* Show a select box with available absolute discounts
|
* Show a select box with available absolute discounts
|
||||||
*
|
*
|
||||||
* @param page Page URL where form is shown
|
* @param string $page Page URL where form is shown
|
||||||
* @param selected Value pre-selected
|
* @param int $selected Value pre-selected
|
||||||
* @param htmlname Nom du formulaire select. Si none, non modifiable
|
* @param string $htmlname Nom du formulaire select. Si none, non modifiable
|
||||||
* @param socid Third party id
|
* @param int $socid Third party id
|
||||||
* @param amount Total amount available
|
* @param float $amount Total amount available
|
||||||
* @param filter SQL filter on discounts
|
* @param string $filter SQL filter on discounts
|
||||||
* @param maxvalue Max value for lines that can be selected
|
* @param int $maxvalue Max value for lines that can be selected
|
||||||
* @param more More string to add
|
* @param string $more More string to add
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function form_remise_dispo($page, $selected='', $htmlname='remise_id',$socid, $amount, $filter='', $maxvalue=0, $more='')
|
function form_remise_dispo($page, $selected='', $htmlname='remise_id',$socid, $amount, $filter='', $maxvalue=0, $more='')
|
||||||
@ -2725,10 +2725,9 @@ class Form
|
|||||||
print '<tr><td nowrap="nowrap">';
|
print '<tr><td nowrap="nowrap">';
|
||||||
if (! $filter || $filter=='fk_facture_source IS NULL') print $langs->trans("CompanyHasAbsoluteDiscount",price($amount),$langs->transnoentities("Currency".$conf->monnaie)).': ';
|
if (! $filter || $filter=='fk_facture_source IS NULL') print $langs->trans("CompanyHasAbsoluteDiscount",price($amount),$langs->transnoentities("Currency".$conf->monnaie)).': ';
|
||||||
else print $langs->trans("CompanyHasCreditNote",price($amount),$langs->transnoentities("Currency".$conf->monnaie)).': ';
|
else print $langs->trans("CompanyHasCreditNote",price($amount),$langs->transnoentities("Currency".$conf->monnaie)).': ';
|
||||||
// print $langs->trans("AvailableGlobalDiscounts").': ';
|
|
||||||
$newfilter='fk_facture IS NULL AND fk_facture_line IS NULL'; // Remises disponibles
|
$newfilter='fk_facture IS NULL AND fk_facture_line IS NULL'; // Remises disponibles
|
||||||
if ($filter) $newfilter.=' AND '.$filter;
|
if ($filter) $newfilter.=' AND '.$filter;
|
||||||
$nbqualifiedlines=$this->select_remises('',$htmlname,$newfilter,$socid,$maxvalue);
|
$nbqualifiedlines=$this->select_remises($selected,$htmlname,$newfilter,$socid,$maxvalue);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
if ($nbqualifiedlines > 0)
|
if ($nbqualifiedlines > 0)
|
||||||
|
|||||||
@ -1217,17 +1217,18 @@ class Societe extends CommonObject
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a discount for third party
|
* Add a discount for third party
|
||||||
* @param remise Montant de la remise
|
*
|
||||||
* @param user Utilisateur qui accorde la remise
|
* @param float $remise Amount of discount
|
||||||
* @param desc Motif de l'avoir
|
* @param User $user User adding discount
|
||||||
* @param tva_tx VAT rate
|
* @param string $desc Reason of discount
|
||||||
* @return int <0 if KO, id or record if OK
|
* @param float $tva_tx VAT rate
|
||||||
|
* @return int <0 if KO, id of discount record if OK
|
||||||
*/
|
*/
|
||||||
function set_remise_except($remise, $user, $desc, $tva_tx=0)
|
function set_remise_except($remise, $user, $desc, $tva_tx=0)
|
||||||
{
|
{
|
||||||
global $langs;
|
global $langs;
|
||||||
|
|
||||||
// Nettoyage des parametres
|
// Clean parameters
|
||||||
$remise = price2num($remise);
|
$remise = price2num($remise);
|
||||||
$desc = trim($desc);
|
$desc = trim($desc);
|
||||||
|
|
||||||
@ -1269,11 +1270,12 @@ class Societe extends CommonObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Renvoie montant TTC des reductions/avoirs en cours disponibles de la societe
|
* Renvoie montant TTC des reductions/avoirs en cours disponibles de la societe
|
||||||
* \param user Filtre sur un user auteur des remises
|
*
|
||||||
* \param filter Filtre autre
|
* @param User $user Filtre sur un user auteur des remises
|
||||||
* \param maxvalue Filter on max value for discount
|
* @param string $filter Filtre autre
|
||||||
* \return int <0 if KO, Credit note amount otherwise
|
* @param string $maxvalue Filter on max value for discount
|
||||||
|
* @return int <0 if KO, Credit note amount otherwise
|
||||||
*/
|
*/
|
||||||
function getAvailableDiscounts($user='',$filter='',$maxvalue=0)
|
function getAvailableDiscounts($user='',$filter='',$maxvalue=0)
|
||||||
{
|
{
|
||||||
@ -1294,6 +1296,7 @@ class Societe extends CommonObject
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Return array of sales representatives
|
* Return array of sales representatives
|
||||||
|
*
|
||||||
* @return array Array of sales representatives of third party
|
* @return array Array of sales representatives of third party
|
||||||
*/
|
*/
|
||||||
function getSalesRepresentatives($user='')
|
function getSalesRepresentatives($user='')
|
||||||
@ -1331,8 +1334,8 @@ class Societe extends CommonObject
|
|||||||
/**
|
/**
|
||||||
* Set the price level
|
* Set the price level
|
||||||
*
|
*
|
||||||
* @param $price_level
|
* @param int $price_level Level of price
|
||||||
* @param $user
|
* @param User $user Use making change
|
||||||
*/
|
*/
|
||||||
function set_price_level($price_level, $user)
|
function set_price_level($price_level, $user)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user