New: The initial sold can be conciliated

This commit is contained in:
Laurent Destailleur 2009-12-30 23:37:51 +00:00
parent f4db921ece
commit 27484d4371
3 changed files with 6 additions and 5 deletions

View File

@ -4,6 +4,7 @@ English Dolibarr ChangeLog
***** ChangeLog for 2.8 compared to 2.7 ***** ***** ChangeLog for 2.8 compared to 2.7 *****
For users: For users:
- New: Initial sold can be conciliated.
- New: task #9935: Can edit accountancy code. - New: task #9935: Can edit accountancy code.
- New: Add a default errors-to email for emailing module. - New: Add a default errors-to email for emailing module.
- New: Can filter on user on stock movement list. - New: Can filter on user on stock movement list.

View File

@ -98,7 +98,7 @@ class Account extends CommonObject
/** /**
* \briref Add a link between bank line record and its source * \brief Add a link between bank line record and its source
* \param line_id Id ecriture bancaire * \param line_id Id ecriture bancaire
* \param url_id Id parametre url * \param url_id Id parametre url
* \param url Url * \param url Url
@ -368,7 +368,7 @@ class Account extends CommonObject
$sql.= ", '".$this->db->idate($this->date_solde)."'"; $sql.= ", '".$this->db->idate($this->date_solde)."'";
$sql.= ", '".$this->db->idate($this->date_solde)."'"; $sql.= ", '".$this->db->idate($this->date_solde)."'";
$sql.= ", 'SOLD'"; $sql.= ", 'SOLD'";
$sql.= ", 1"; $sql.= ", 0"; // Not conciliated by default
$sql.= ")"; $sql.= ")";
$this->db->query($sql); $this->db->query($sql);

View File

@ -162,7 +162,7 @@ if ($user->rights->banque->consolidate && $_POST["action"] == 'num_releve')
/* /*
* Affichage fiche ligne ecriture en mode edition * View
*/ */
llxHeader(); llxHeader();