Fix Bug : tva_code not retrieve from search

This commit is contained in:
sparkyx 2024-06-30 13:57:59 +02:00
parent cbaed83ec8
commit f1baf67e42
7 changed files with 175 additions and 11 deletions

View file

@ -133,7 +133,7 @@ $html = var_export($_REQUEST, true);
set_language(); set_language();
if ( LOGINPUT) if ( LOGINPUT)
{ {
$file_loginput=fopen($_ENV['TMP'].'/scenario-'.$_SERVER['REQUEST_TIME'].'.php','a+'); $file_loginput=fopen($_ENV['TMP'].'/scenario-ajax-'.$_SERVER['REQUEST_TIME'].'.php','a+');
fwrite ($file_loginput,"<?php \n"); fwrite ($file_loginput,"<?php \n");
fwrite ($file_loginput,'//@description:'.$op."\n"); fwrite ($file_loginput,'//@description:'.$op."\n");
fwrite($file_loginput, '$_GET='.var_export($_GET,true)); fwrite($file_loginput, '$_GET='.var_export($_GET,true));

View file

@ -115,7 +115,7 @@ if ( isset($_SESSION[SESSION_KEY.'isValid']) && $_SESSION[SESSION_KEY.'isValid']
$filter_card=$d; $filter_card=$d;
$filter_card=noalyss_str_replace('[sql]','',$d); $filter_card=noalyss_str_replace('[sql]','',$d);
} }
$sql="select vw_name,vw_first_name,vw_addr,vw_cp,vw_buy,vw_sell,tva_id $sql="select vw_name,vw_first_name,vw_addr,vw_cp,vw_buy,vw_sell,tva_id,tva_code
from vw_fiche_attr from vw_fiche_attr
where quick_code=upper($1)". $filter_card; where quick_code=upper($1)". $filter_card;
@ -133,7 +133,7 @@ if ( isset($_SESSION[SESSION_KEY.'isValid']) && $_SESSION[SESSION_KEY.'isValid']
$sell=(isNumber($array[0]['vw_sell']) == 1) ? $array[0]['vw_sell'] : 0 ; $sell=(isNumber($array[0]['vw_sell']) == 1) ? $array[0]['vw_sell'] : 0 ;
$buy=(isNumber($array[0]['vw_buy']) == 1) ?$array[0]['vw_buy']:0; $buy=(isNumber($array[0]['vw_buy']) == 1) ?$array[0]['vw_buy']:0;
$tva_id=$array[0]['tva_id']; $tva_id=(empty($array[0]['tva_id']))?$array[0]['tva_code']:$array[0]['tva_id'];
// Check null // Check null
$name=($name==null)?" ":noalyss_str_replace('"','',$name); $name=($name==null)?" ":noalyss_str_replace('"','',$name);

View file

@ -530,9 +530,11 @@ case 'fs':
$array[$i]['javascript'].=sprintf("set_value('%s','%s');", $array[$i]['javascript'].=sprintf("set_value('%s','%s');",
$price,$amount); $price,$amount);
} }
$array[$i]['javascript'].=sprintf("set_value('%s','%s');", // if there is no TVA_ID in the view, it is possible we have a TVA_CODE
$tvaid,$aFound[$i]['tva_id']); $tva_code=(empty($aFound[$i]['tva_id']))?$aFound[$i]['tva_code']:$aFound[$i]['tva_id'];
$array[$i]['javascript'].="removeDiv('search_card');"; $array[$i]['javascript'].=sprintf("set_value('%s','%s');",
$tvaid,$tva_code);
$array[$i]['javascript'].="removeDiv('search_card');";
}//foreach }//foreach

View file

@ -4,9 +4,9 @@ update menu_ref set me_menu='Navigateur &#x1F9ED;' where me_code ~ 'NAVI';
update menu_ref set me_menu='Configuration &#x1F527;' where me_code='CFG'; update menu_ref set me_menu='Configuration &#x1F527;' where me_code='CFG';
ALTER TABLE public.tva_rate ADD CONSTRAINT tva_code_number_check CHECK (isnumeric(tva_code) = false); ALTER TABLE public.tva_rate ADD CONSTRAINT tva_code_number_check CHECK (tva_code::text !~ '^([0-9]+)$');
drop view if exists public.vw_fiche_attr; -- drop view if exists public.vw_fiche_attr;
CREATE OR REPLACE VIEW public.vw_fiche_attr CREATE OR REPLACE VIEW public.vw_fiche_attr
AS SELECT a.f_id, AS SELECT a.f_id,

View file

@ -0,0 +1,164 @@
<?php
/*
* * Copyright (C) 2022 Dany De Bontridder <dany@alchimerys.be>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*
* Author : Dany De Bontridder danydb@noalyss.eu $(DATE)
*/
/**
* @file
* @brief noalyss
*/
use PHPUnit\Framework\TestCase;
require DIRTEST . '/global.php';
/**
* @testdox Class Ajax_MiscTest : used for testing the AJAX calls from ajax_misc
* @backupGlobals enabled
*/
class Ajax_MiscTest extends TestCase
{
/**
* @var Fiche
*/
// protected $object;
// protected $connection;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test method is executed.
*/
// protected function setUp(): void
// {
//
//
// }
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test method is executed.
*/
// protected function tearDown(): void
// {
// /**
// * example
// * if ( ! is_object($this->object->fiche_def)) return;
// * include_once DIRTEST.'/global.php';
// * $g_connection=Dossier::connect();
// * $sql=new ArrayObject();
// * $sql->append("delete from fiche_detail where f_id in (select f_id from fiche where fd_id =\$1 )");
// * $sql->append("delete from fiche where f_id not in (select f_id from fiche_detail where \$1=\$1)");
// * $sql->append("delete from jnt_fic_attr where fd_id = \$1 ");
// * $sql->append("delete from fiche_def where fd_id = \$1");
// * foreach ($sql as $s) {
// * $g_connection->exec_sql($s,[$this->object->fiche_def->id]);
// * }
// */
// }
/**
* the setUpBeforeClass() template methods is called before the first test of the test case
* class is run
*/
// public static function setUpBeforeClass(): void
// {
// // include 'global.php';
// }
/**
* tearDownAfterClass() template methods is calleafter the last test of the test case class is run,
*
*/
// static function tearDownAfterClass(): void
// {
// // include 'global.php';
// }
private function createCard_MA1()
{
global $g_user, $g_connection;
$fiche_id = $g_connection->get_value("select f_id from fiche_detail where ad_id=$1 and ad_value=$2",
array(ATTR_DEF_QUICKCODE, 'MA1'));
if (!empty ($fiche_id)) {
$this->cleanCard($fiche_id);
}
$g_user = new Noalyss_User($g_connection);
//insert a card
$fiche = new Fiche($g_connection);
// card for Merchandise
$fiche->set_fiche_def(1);
Card_Property::load($fiche);
$fiche->setAttribut(1, "Inserted by PHPUNIT-" . __CLASS__ . ":" . __FUNCTION__);
$fiche->setAttribut(ATTR_DEF_TVA, '210A');
$fiche->setAttribut(ATTR_DEF_QUICKCODE, 'MA1');
$fiche->insert(1, $fiche->to_array());
return $fiche;
}
private function cleanCard($fiche_id)
{
global $g_connection;
$g_connection->exec_sql("delete from fiche_detail where f_id = $1", array($fiche_id));
$g_connection->exec_sql("delete from fiche where f_id = $1", array($fiche_id));
}
/**
* @testdox Call fid.php
* @covers ajax call to fid.php
* @backupGlobals enabled
*/
public function testAJAX_retrieveCard()
{
global $g_user, $g_connection;
$fiche=$this->createCard_MA1();
$query = array(
'gDossier' => DOSSIER,
'FID' => 'MA1',
'l' => 'e_march4_label',
't' => 'e_march4_tva_id',
'p' => 'e_march4_price',
'b' => 'e_march4_price',
'd' => 'deb',
'j' => '3',
'ctl' => 'undefined'
);
$_REQUEST = $_POST = $_GET = $query;
ob_start();
require NOALYSS_HOME . '/fid.php';
$content = ob_get_contents();
ob_end_clean();
$expected = <<<EOF
{"flabel":"e_march4_label","name":"Inserted by PHPUNIT-Ajax_MiscTest:createCard_MA1 ","ftva_id":"e_march4_tva_id","tva_id":"210A","fPrice_sale":"e_march4_price","sell":"0","fPrice_purchase":"e_march4_price","buy":"0","answer":"ok"}
EOF;
$this->assertEquals($expected, $content, "Incorrect answer");
// clean card
$this->cleanCard($fiche->id);
}
}

View file

@ -150,8 +150,6 @@ class FollowupTest extends TestCase
{ {
global $g_user; global $g_user;
$g_user=new Noalyss_User($this->connection); $g_user=new Noalyss_User($this->connection);
$array_search=
$query=Follow_Up::create_query($this->connection,array( $query=Follow_Up::create_query($this->connection,array(
"ag_dest_query" => "-2", "ag_dest_query" => "-2",
"qcode" => "CLIENT1", "qcode" => "CLIENT1",

Binary file not shown.