Merge remote-tracking branch 'origin/3.6' into 3.7
Conflicts: ChangeLog htdocs/commande/class/commande.class.php htdocs/filefunc.inc.php
This commit is contained in:
commit
6e2901c8f0
@ -170,6 +170,8 @@ Dolibarr better:
|
|||||||
- If you used warehouse/stock module, recheck setup of stock increase/decrease rules of the
|
- If you used warehouse/stock module, recheck setup of stock increase/decrease rules of the
|
||||||
warehouse module and your Point Of Sale module if you use one.
|
warehouse module and your Point Of Sale module if you use one.
|
||||||
|
|
||||||
|
***** ChangeLog for 3.6.3 compared to 3.6.2 *****
|
||||||
|
- Fix: ref_ext was not saved when recording a customer order from web service
|
||||||
|
|
||||||
***** ChangeLog for 3.6.2 compared to 3.6.1 *****
|
***** ChangeLog for 3.6.2 compared to 3.6.1 *****
|
||||||
- Fix: fix ErrorBadValueForParamNotAString error message in price customer multiprice.
|
- Fix: fix ErrorBadValueForParamNotAString error message in price customer multiprice.
|
||||||
|
|||||||
@ -676,12 +676,13 @@ class Commande extends CommonOrder
|
|||||||
$sql.= ", entity";
|
$sql.= ", entity";
|
||||||
$sql.= ")";
|
$sql.= ")";
|
||||||
$sql.= " VALUES ('(PROV)',".$this->socid.", '".$this->db->idate($now)."', ".$user->id;
|
$sql.= " VALUES ('(PROV)',".$this->socid.", '".$this->db->idate($now)."', ".$user->id;
|
||||||
$sql.= ", ".($this->fk_project?$this->fk_project:"null");
|
$sql.= ", ".($this->fk_project>0?$this->fk_project:"null");
|
||||||
$sql.= ", '".$this->db->idate($date)."'";
|
$sql.= ", '".$this->db->idate($date)."'";
|
||||||
$sql.= ", ".($this->source>=0 && $this->source != '' ?$this->source:'null');
|
$sql.= ", ".($this->source>=0 && $this->source != '' ?$this->source:'null');
|
||||||
$sql.= ", '".$this->db->escape($this->note_private)."'";
|
$sql.= ", '".$this->db->escape($this->note_private)."'";
|
||||||
$sql.= ", '".$this->db->escape($this->note_public)."'";
|
$sql.= ", '".$this->db->escape($this->note_public)."'";
|
||||||
$sql.= ", '".$this->db->escape($this->ref_client)."'";
|
$sql.= ", ".($this->ref_ext?"'".$this->db->escape($this->ref_ext)."'":"null");
|
||||||
|
$sql.= ", ".($this->ref_client?"'".$this->db->escape($this->ref_client)."'":"null");
|
||||||
$sql.= ", ".($this->ref_int?"'".$this->db->escape($this->ref_int)."'":"null");
|
$sql.= ", ".($this->ref_int?"'".$this->db->escape($this->ref_int)."'":"null");
|
||||||
$sql.= ", '".$this->modelpdf."'";
|
$sql.= ", '".$this->modelpdf."'";
|
||||||
$sql.= ", ".($this->cond_reglement_id>0?"'".$this->cond_reglement_id."'":"null");
|
$sql.= ", ".($this->cond_reglement_id>0?"'".$this->cond_reglement_id."'":"null");
|
||||||
|
|||||||
@ -29,7 +29,11 @@
|
|||||||
* \brief File that include conf.php file and commons lib like functions.lib.php
|
* \brief File that include conf.php file and commons lib like functions.lib.php
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
if (! defined('DOL_VERSION')) define('DOL_VERSION','3.7.0');
|
if (! defined('DOL_VERSION')) define('DOL_VERSION','3.7.0');
|
||||||
|
=======
|
||||||
|
if (! defined('DOL_VERSION')) define('DOL_VERSION','3.6.3');
|
||||||
|
>>>>>>> refs/remotes/origin/3.6
|
||||||
if (! defined('EURO')) define('EURO',chr(128));
|
if (! defined('EURO')) define('EURO',chr(128));
|
||||||
|
|
||||||
// Define syslog constants
|
// Define syslog constants
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user