Fix: Save new model when changed on interventions
This commit is contained in:
parent
0b1272c0e7
commit
d718aa347e
@ -15,6 +15,7 @@ For users:
|
||||
- New: Can clone a commercial proposal.
|
||||
- New: Major enhancement of project module.
|
||||
- New: Added product label in invoice exports fields.
|
||||
- Fix: Save new model when changed on interventions.
|
||||
- Fix: Failed to go on the future view of bank transaction if there is no
|
||||
future bank transaction already wrote.
|
||||
- Fix: Bad ref in supplier list.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* Copyright (C) 2002-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2005-2007 Regis Houssin <regis@dolibarr.fr>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
@ -171,6 +171,11 @@ if ($_REQUEST['action'] == 'builddoc') // En get ou en post
|
||||
$fichinter->fetch($_GET['id']);
|
||||
$fichinter->fetch_lines();
|
||||
|
||||
if ($_REQUEST['model'])
|
||||
{
|
||||
$fichinter->setDocModel($user, $_REQUEST['model']);
|
||||
}
|
||||
|
||||
$outputlangs = $langs;
|
||||
if (! empty($_REQUEST['lang_id']))
|
||||
{
|
||||
@ -944,7 +949,7 @@ elseif ($_GET["id"] > 0)
|
||||
$var=true;
|
||||
|
||||
print "<br>\n";
|
||||
$somethingshown=$formfile->show_documents('ficheinter',$filename,$filedir,$urlsource,$genallowed,$delallowed,$ficheinter->modelpdf);
|
||||
$somethingshown=$formfile->show_documents('ficheinter',$filename,$filedir,$urlsource,$genallowed,$delallowed,$fichinter->modelpdf);
|
||||
|
||||
print "</td><td>";
|
||||
print " </td>";
|
||||
|
||||
@ -20,6 +20,7 @@ ConfirmModifyIntervention=Are you sure you want to modify this intervention ?
|
||||
ConfirmDeleteInterventionLine=Are you sure you want to delete this intervention line ?
|
||||
NameAndSignatureOfInternalContact=Name and signature of intervening :
|
||||
NameAndSignatureOfExternalContact=Name and signature of customer :
|
||||
DocumentModelStandard=Standard document model for interventions
|
||||
##### Types de contacts #####
|
||||
TypeContact_fichinter_internal_INTERREPFOLL=Representative following-up intervention
|
||||
TypeContact_fichinter_internal_INTERVENING=Intervening
|
||||
|
||||
@ -32,6 +32,7 @@ InterLineId=Id ligne d
|
||||
InterLineDate=Date ligne
|
||||
InterLineDuration=Durée ligne
|
||||
InterLineDesc=Description ligne
|
||||
DocumentModelStandard=Modèle de fiche intervention standard
|
||||
##### Types de contacts #####
|
||||
TypeContact_fichinter_internal_INTERREPFOLL=Responsable suivi de l'intervention
|
||||
TypeContact_fichinter_internal_INTERVENING=Intervenant
|
||||
|
||||
Loading…
Reference in New Issue
Block a user