forked from Wavyzz/dolibarr
Merge pull request #10303 from simnandez/7.0
Fix #8152 and prepare 7.0.5
This commit is contained in:
33
ChangeLog
33
ChangeLog
@@ -3,6 +3,39 @@ English Dolibarr ChangeLog
|
|||||||
--------------------------------------------------------------
|
--------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
***** ChangeLog for 7.0.5 compared to 7.0.4 *****
|
||||||
|
FIX: #3234
|
||||||
|
FIX: #6580
|
||||||
|
FIX: #8741
|
||||||
|
FIX: #9934
|
||||||
|
FIX: avoid Class 'AdherentType' not found
|
||||||
|
FIX: Can't create a thirdparty from member if customer code is mandatory.
|
||||||
|
FIX: Can't generate invoice pdf
|
||||||
|
FIX: contact/adress tab: when changing company ajax combo, the first contact change is not taken into account
|
||||||
|
FIX: Error generating ODT when option to use contact on doc on
|
||||||
|
FIX: Error reported when creation of thirdparty from member fails
|
||||||
|
FIX: filter on product category doesn't work
|
||||||
|
FIX: form actions: select_type_actions could be too small + bad init
|
||||||
|
FIX: fourn payment modes musn't be available on customer docs
|
||||||
|
FIX: Function updatePrice with wrong parameters
|
||||||
|
FIX: If we change customer/supplier rule we can't edit old thirdparty.
|
||||||
|
FIX: Interface regression for bind people. Fix option MAIN_OPTIMIZEFORTEXTBROWSER
|
||||||
|
FIX: Lines are not inserted correctly if VAT have code
|
||||||
|
FIX: OppStatusShort doesn't exists
|
||||||
|
FIX: pdf typhon: order reference duplicate
|
||||||
|
FIX: propal pdf: missing parenthesis for customs code
|
||||||
|
FIX: Same on customer card
|
||||||
|
FIX: same on lines
|
||||||
|
FIX: Select first mail model by default
|
||||||
|
FIX: sql query performance on list_qualified_avoir_supplier_invoices.
|
||||||
|
FIX: task time screen: last fix was overkill
|
||||||
|
FIX: task time screen: prevent users with access to all project from assigning to tasks they're not allowed to do
|
||||||
|
FIX: use discount with multicurrency
|
||||||
|
FIX: Variable name
|
||||||
|
FIX: We want to be able to send PDF of paid invoices
|
||||||
|
FIX: When delete a product, llx_product_association rows are not deleted
|
||||||
|
FIX: wrong occurence number of contract on contact card, we must only count externals
|
||||||
|
|
||||||
***** ChangeLog for 7.0.4 compared to 7.0.3 *****
|
***** ChangeLog for 7.0.4 compared to 7.0.3 *****
|
||||||
FIX: #8984 button create expense report
|
FIX: #8984 button create expense report
|
||||||
FIX: #9032
|
FIX: #9032
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2013 Laurent Destailleur <eldy@users.sourceforge.net>
|
/* Copyright (C) 2013 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
* Copyright (C) 2013 Juanjo Menent <jmenent@2byte.es>
|
||||||
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 3 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
@@ -192,7 +193,7 @@ if (($action == 'send' || $action == 'relance') && ! $_POST['addfile'] && ! $_PO
|
|||||||
// Recipient was provided from combo list
|
// Recipient was provided from combo list
|
||||||
if ($val == 'thirdparty') // Id of third party
|
if ($val == 'thirdparty') // Id of third party
|
||||||
{
|
{
|
||||||
$tmparray[] = $thirdparty->name.' <'.$thirdparty->email.'>';
|
$tmparray[] = str_replace(","," ",$thirdparty->name).' <'.$thirdparty->email.'>';
|
||||||
}
|
}
|
||||||
elseif ($val) // Id du contact
|
elseif ($val) // Id du contact
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user