Fix: Date ral mal renseigne
This commit is contained in:
parent
98dbaf5f1a
commit
74be2d4b0e
@ -729,7 +729,7 @@ if ($_GET["id"])
|
||||
|
||||
// Note
|
||||
print '<tr><td valign="top">'.$langs->trans("Note").'</td><td colspan="3">';
|
||||
print nl2br($act->note);
|
||||
print nl2br(htmlentities($act->note));
|
||||
print '</td></tr>';
|
||||
|
||||
print '</table>';
|
||||
|
||||
@ -101,7 +101,9 @@ alter table llx_actioncomm add column tms timestamp after datea;
|
||||
alter table llx_actioncomm add column fk_commande integer after propalrowid;
|
||||
|
||||
update llx_actioncomm set datec = datea where datec is null;
|
||||
update llx_actioncomm set datep = datea where datep is null;
|
||||
update llx_actioncomm set datep = datea where datep is null AND percent < 100;
|
||||
update llx_actioncomm set datep = datec where datea is null AND datep is null AND percent < 100;
|
||||
update llx_actioncomm set datea = datec where datea is null AND datep is null AND percent = 100;
|
||||
update llx_actioncomm set fk_action = '8' where fk_action = '3' and label = 'Envoi commande par mail';
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user