Skip to content
Snippets Groups Projects
Commit 00eee133 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Missing return code

parent 17df30b7
No related branches found
No related tags found
No related merge requests found
......@@ -264,7 +264,7 @@ function getInvoice($authentication,$id,$ref,$ref_ext)
// Create invoice
$objectresp = array(
'result'=>array('result_code'=>'', 'result_label'=>''),
'result'=>array('result_code'=>'OK', 'result_label'=>''),
'invoice'=>array(
'id' => $invoice->id,
'ref' => $invoice->ref,
......@@ -388,7 +388,7 @@ function getInvoicesForThirdParty($authentication,$idthirdparty)
}
$objectresp=array(
'result'=>array('result_code'=>'', 'result_label'=>''),
'result'=>array('result_code'=>'OK', 'result_label'=>''),
'invoices'=>$linesinvoice
);
......
......@@ -114,7 +114,7 @@ function getVersions($authentication)
if (! $error)
{
$objectresp['result']=array('result_code'=>'', 'result_label'=>'');
$objectresp['result']=array('result_code'=>'OK', 'result_label'=>'');
$objectresp['dolibarr']=version_dolibarr();
$objectresp['os']=version_os();
$objectresp['php']=version_php();
......
......@@ -182,7 +182,7 @@ function getThirdParty($authentication,$id,$ref,$ref_ext)
{
// Create
$objectresp = array(
'result'=>array('result_code'=>'', 'result_label'=>''),
'result'=>array('result_code'=>'OK', 'result_label'=>''),
'thirdparty'=>array(
'id' => $thirdparty->id,
'ref' => $thirdparty->name,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment