Fix bug for rounded value and quantity is a decimal value

This commit is contained in:
sparkyx 2006-10-16 10:08:21 +00:00
parent 527b729650
commit 9e7dab4e16
4 changed files with 8 additions and 4 deletions

View file

@ -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();
}