E-conomic. Oprette fakturalinje
Hejsa. Jeg ønsker at oprette en debitor, hvorefter en fakturalinje tilknyttet mit produkt(varegruppe nr.) "10" i e-conomic. Hvordan gøres dette?Har forsøgt med dette - den opretter dog fakturalinje OG debitor, men men.. IKKE angiver hvilket produkt det er jeg vælger.
HJÆLP!!
if ( isset ( $_POST['o'] ) )
{
try
{
$id=9999999;
$e = $client->Product_FindByNumber(array('number' => 10))->Product_FindByNumberResult;
print_r($e);
$debtorHandles = $client->debtor_GetAll()->Debtor_GetAllResult->DebtorHandle;
$firstDebtor = $debtorHandles[0];
print_r($debtorHandles);
$newCurrentInvoiceHandle = $client->CurrentInvoice_Create(array(
'debtorHandle' => $firstDebtor))->CurrentInvoice_CreateResult;
$newCurrentInvoiceLineHandle = $client->CurrentInvoiceLine_Create(array(
'invoiceHandle' => $newCurrentInvoiceHandle))->CurrentInvoiceLine_CreateResult;
$productHandles = $client->product_GetAll()->Product_GetAllResult->ProductHandle;
foreach ( $productHandles as $E) {
echo $E . "<br>";
}
$firstProduct = $productHandles[0];
$client->CurrentInvoiceLine_SetProduct(
array(
'currentInvoiceLineHandle' => $newCurrentInvoiceLineHandle,
'valueHandle' => 1
)
);
}
catch(Exception $exception)
{
echo $exception;
}
}