| '.$langs->trans('PaymentConditions').' | ';
$form->select_conditions_paiements($soc->cond_reglement,'cond_reglement_id');
diff --git a/htdocs/comm/propal.php b/htdocs/comm/propal.php
index 8f2547601e5..4df8417184f 100644
--- a/htdocs/comm/propal.php
+++ b/htdocs/comm/propal.php
@@ -112,6 +112,7 @@ if ($_POST['action'] == 'add')
{
$propal = new Propal($db, $_GET['socidp']);
$propal->datep = mktime(12, 1, 1, $_POST['remonth'], $_POST['reday'], $_POST['reyear']);
+ $propal->date_livraison = mktime(12, 1, 1, $_POST['liv_month'], $_POST['liv_day'], $_POST['liv_year']);
$propal->duree_validite = $_POST['duree_validite'];
$propal->cond_reglement_id = $_POST['cond_reglement_id'];
diff --git a/htdocs/langs/fr_FR/propal.lang b/htdocs/langs/fr_FR/propal.lang
index 15e37f29861..fdba915ced1 100644
--- a/htdocs/langs/fr_FR/propal.lang
+++ b/htdocs/langs/fr_FR/propal.lang
@@ -62,4 +62,5 @@ RelatedBill=Facture associ
RelatedBills=Factures associées
ErrorPropalNotFound=Propal %s inexistante
Estimate=Devis :
-OtherPropals=Autres propositions
\ No newline at end of file
+OtherPropals=Autres propositions
+DateDelivery=Date de livraison
|