Merge branch '8.0' of git@github.com:Dolibarr/dolibarr.git into 9.0
This commit is contained in:
commit
02b8bc94e7
@ -262,15 +262,17 @@ else {
|
|||||||
if ($senderissupplier != 2)
|
if ($senderissupplier != 2)
|
||||||
{
|
{
|
||||||
$ajaxoptions=array(
|
$ajaxoptions=array(
|
||||||
'update' => array('qty'=>'qty','remise_percent' => 'discount','idprod' => 'idprod'), // html id tags that will be edited with which ajax json response key
|
'update' => array('qty'=>'qty','remise_percent' => 'discount','idprod' => 'idprod'), // html id tags that will be edited with each ajax json response key
|
||||||
'option_disabled' => 'idthatdoesnotexists', // html id to disable once select is done
|
'option_disabled' => 'idthatdoesnotexists', // html id to disable once select is done
|
||||||
'warning' => $langs->trans("NoPriceDefinedForThisSupplier") // translation of an error saved into var 'warning' (for exemple shown we select a disabled option into combo)
|
'warning' => $langs->trans("NoPriceDefinedForThisSupplier") // translation of an error saved into var 'warning' (for exemple shown we select a disabled option into combo)
|
||||||
);
|
);
|
||||||
$alsoproductwithnosupplierprice=0;
|
$alsoproductwithnosupplierprice=0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$ajaxoptions = array();
|
$ajaxoptions = array(
|
||||||
|
'update' => array('remise_percent' => 'discount') // html id tags that will be edited with each ajax json response key
|
||||||
|
);
|
||||||
$alsoproductwithnosupplierprice=1;
|
$alsoproductwithnosupplierprice=1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -757,6 +757,7 @@ if ($step == 3 && $datatoexport)
|
|||||||
|
|
||||||
// un formulaire en plus pour recuperer les filtres
|
// un formulaire en plus pour recuperer les filtres
|
||||||
print '<form action="'.$_SERVER["PHP_SELF"].'?step=4&action=submitFormField&datatoexport='.$datatoexport.'" name="FilterField" method="post">';
|
print '<form action="'.$_SERVER["PHP_SELF"].'?step=4&action=submitFormField&datatoexport='.$datatoexport.'" name="FilterField" method="post">';
|
||||||
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="noborder" width="100%">';
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<td>'.$langs->trans("Entities").'</td>';
|
print '<td>'.$langs->trans("Entities").'</td>';
|
||||||
|
|||||||
@ -1557,7 +1557,7 @@ class FactureFournisseur extends CommonInvoice
|
|||||||
* @param string $ref_supplier Supplier ref
|
* @param string $ref_supplier Supplier ref
|
||||||
* @return int >0 if OK, <0 if KO
|
* @return int >0 if OK, <0 if KO
|
||||||
*/
|
*/
|
||||||
public function addline($desc, $pu, $txtva, $txlocaltax1, $txlocaltax2, $qty, $fk_product=0, $remise_percent=0, $date_start='', $date_end='', $ventil=0, $info_bits='', $price_base_type='HT', $type=0, $rang=-1, $notrigger=false, $array_options=0, $fk_unit=null, $origin_id=0, $pu_ht_devise=0, $ref_supplier='')
|
public function addline($desc, $pu, $txtva, $txlocaltax1, $txlocaltax2, $qty, $fk_product=0, $remise_percent=0, $date_start='', $date_end='', $ventil=0, $info_bits='', $price_base_type='HT', $type=0, $rang=-1, $notrigger=false, $array_options=0, $fk_unit=null, $origin_id=0, $pu_ht_devise=0, $ref_supplier='', $special_code='')
|
||||||
{
|
{
|
||||||
global $langs, $mysoc, $conf;
|
global $langs, $mysoc, $conf;
|
||||||
|
|
||||||
@ -1727,7 +1727,7 @@ class FactureFournisseur extends CommonInvoice
|
|||||||
$this->line->rang=$rang;
|
$this->line->rang=$rang;
|
||||||
$this->line->info_bits=$info_bits;
|
$this->line->info_bits=$info_bits;
|
||||||
|
|
||||||
$this->line->special_code=$this->special_code;
|
$this->line->special_code=((string) $special_code != '' ? $special_code : $this->special_code);
|
||||||
$this->line->fk_parent_line=$this->fk_parent_line;
|
$this->line->fk_parent_line=$this->fk_parent_line;
|
||||||
$this->line->origin=$this->origin;
|
$this->line->origin=$this->origin;
|
||||||
$this->line->origin_id=$origin_id;
|
$this->line->origin_id=$origin_id;
|
||||||
|
|||||||
@ -925,7 +925,10 @@ if (empty($reshook))
|
|||||||
0,
|
0,
|
||||||
$lines[$i]->array_options,
|
$lines[$i]->array_options,
|
||||||
$lines[$i]->fk_unit,
|
$lines[$i]->fk_unit,
|
||||||
$lines[$i]->id
|
$lines[$i]->id,
|
||||||
|
0,
|
||||||
|
'',
|
||||||
|
$lines[$i]->special_code
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($result < 0)
|
if ($result < 0)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user