Fix bug for rounded value and quantity is a decimal value
This commit is contained in:
parent
527b729650
commit
9e7dab4e16
4 changed files with 8 additions and 4 deletions
|
|
@ -173,7 +173,7 @@ TREEVIEW_WIDTH = 250
|
|||
#---------------------------------------------------------------------------
|
||||
# configuration options related to the LaTeX output
|
||||
#---------------------------------------------------------------------------
|
||||
GENERATE_LATEX = YES
|
||||
GENERATE_LATEX = NO
|
||||
LATEX_OUTPUT = latex
|
||||
LATEX_CMD_NAME = latex
|
||||
MAKEINDEX_CMD_NAME = makeindex
|
||||
|
|
|
|||
|
|
@ -490,6 +490,9 @@ if ( DEBUG=='false' ) ob_start();
|
|||
if ( GetVersion($db) == 22 ) {
|
||||
ExecuteScript($db,'sql/patch/upgrade22.sql');
|
||||
} // version
|
||||
if ( GetVersion($db) == 23 ) {
|
||||
ExecuteScript($db,'sql/patch/upgrade23.sql');
|
||||
} // version
|
||||
|
||||
if ( DEBUG == 'false') ob_end_clean();
|
||||
}//for
|
||||
|
|
@ -593,6 +596,9 @@ if (DEBUG == 'false' ) ob_start();
|
|||
if ( GetVersion($db) == 22 ) {
|
||||
ExecuteScript($db,'sql/patch/upgrade22.sql');
|
||||
} // version
|
||||
if ( GetVersion($db) == 23 ) {
|
||||
ExecuteScript($db,'sql/patch/upgrade23.sql');
|
||||
} // version
|
||||
|
||||
if ( DEBUG == 'false') ob_end_clean();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ BODY {
|
|||
<script src="scripts.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<BODY onLoad="SetFocus(\'login\',0)">
|
||||
Version 2.1.1
|
||||
Version 2.1.2
|
||||
<div class="remark">
|
||||
<p class="gras">Il est conseillé de ne PAS utiliser Internet Explorer.
|
||||
</p><p>
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
alter table import_tmp add jr_rapt text;
|
||||
create unique index fd_id_ad_id_x on jnt_fic_attr( fd_id,ad_id);
|
||||
Loading…
Add table
Add a link
Reference in a new issue