Cosmetic : Order number and bank message in confirm operation (sale - purcharse)

This commit is contained in:
sparkyx 2025-12-27 11:38:58 +01:00
parent 9340c25149
commit aad1ace2a8
4 changed files with 18 additions and 10 deletions

View file

@ -4238,4 +4238,12 @@ span.nb-round {
background-color: var(--bg-inner-box);
margin-left: 2px;
color:navy;
}
}
/*
* Tab : when show the operation to confirm
*/
#document_div_id {
height:185px;
height:10rem;
}

View file

@ -3685,10 +3685,8 @@ EOF;
$supplemental_doc->setAlertOnSize(true);
$supplemental_doc->set_multiple(true);
$r="";
$r.='<p class="decale">';
$r.= _("Ajoutez des documents additionnels");
$r.=$supplemental_doc->input();
$r.='</p>';
return $r;
}
/**

View file

@ -2119,7 +2119,7 @@ EOF;
public function extra_info()
{
$r="";
$r = '<div id="facturation_div_id" style="height:185px;height:10rem">';
$r = '<div id="facturation_div_id" class="conf_op_extra_info">';
$r.='<p class="decale">';
// check for upload piece
$file=new IFile();
@ -2140,8 +2140,9 @@ EOF;
" from document_modele where md_affect='ACH' order by 2");
$r.=$doc_gen->input().'<br>';
}
$r.='</p>';
$r.=$this->input_supplemental_document();
$r.='<br>';
$r.='<p>';
$obj=new IText();
$r.=_('Numero de bon de commande : ').$obj->input('bon_comm').'<br>';
$r.=_('Autre information : ').$obj->input('other_info').'<br>';

View file

@ -100,7 +100,8 @@ if ( in_array("document",$a_show)) {
throw new Exception("ACC_LEDGER_INPUT100 : document and invoice available in same time");
}
?>
<div id="document_div_id" style="display:none;height:185px;height:10rem">
<div id="document_div_id" >
<div>
<?php
/**
* receipt
@ -108,16 +109,16 @@ if ( in_array("document",$a_show)) {
$file = new IFile();
$file->setAlertOnSize(true);
$file->table = 0;
echo '<p class="decale">';
echo _("Ajoutez une pièce justificative ");
echo $file->input("pj", "");
echo '</p>';
?>
<p class="decale">
</div>
<div>
<?php
echo $this->input_supplemental_document();
?>
</p>
</div>
</div>
<?php