omsætningsstatistik
Hello How to create statistic like, you can in the report tap: OmsætningsstatistikFra datoTil datoUdgangspunkt i varer
View ArticleCreating order with variants
Hi, I need to create an order using product variants, but have not been able to find a way to do that. If this is not possible, order-integration with e-conomic is impossible for all customers using...
View ArticleAnswered: Order_CreateFromData fails with an internal error
It looks like you might be setting the VatZone incorrectly. If you have an ExtendedVatZone handle then try to use the Number property rather than the Name property when creating an order.
View ArticleAnswered: Create Debtors - error
I had same problem, it was problem with DebtorGroupHandle, you give array for the function (debtorGroup_GetAll) $DebtorGroupHandles =...
View ArticleAnswered: CurrentInvoiceLine_CreateFromData need handle, id and number
Hi Consendo The Handle is an extra object wrapping ID and Number. You don't have these beforehand on a Create method.<Handle> <Id>int</Id>...
View ArticleAnswered: App Identifier X-EconomicAppIdentifier
Hi jhross Adding the header in C# is done like so:using (var operationScope = new OperationContextScope(session.InnerChannel)) {// Add a HTTP Header to an outgoing requestvar requestMessage = new...
View ArticleAnswered: C# rest examples
Hi BB80 We don't have any example code for REST in C#, but as you may have noted we have some examples for JS in our RESTDocs We've chosen JS examples as these show the principal approach. With...
View ArticleAnswered: get all invoices having due date is in date range
Hi dapa There is no FindByDueDate call in SOAP. In order to get all booked invoices with a due date between A and B you should use Invoice_GetAll -> Invoice_GetDataArray and the select the subset...
View ArticleAnswered: how to get "Rec. cost price" from product
Hi dapa Recommended Cost Price (Inventory module) is not exposed via either SOAP or REST.
View ArticleAnswered: how to get unpaid invoices from e-conomic account
Hi dapa There is no SOAP endpoint available for this exact approach. Maybe looking at debtor balances first could help you narrow the scope?
View ArticleAnswered: Debtor_GetData with php
delete the loop: foreach ($debtorDataObjects as $i => $debtorData) { ?>And ad: $debtorData =$debtorDataObjects; GET_DATA is not an array, therefor no loop is needed.
View ArticleAnswered: Debtor_FindByName Debtor_GetDataArray
Debtor_FindByName: the result is one debtor, therefore $debtorDataObjects should be:$debtorDataObjects = $client->Debtor_GetData(array('entityHandle' =>...
View ArticleAnswered: Debtor_FindByPartialName & Debtor_GetDataArray php
Because Debtor_GetDataArray handles from two and more debtors. With only one debtor, use the: $debtorDataObjects = $client->Debtor_GetData(array('entityHandle' =>...
View ArticleAnswered: 40 second delay when instantiating EconomicWebService
Typically when this pops up it is due to the wsdl being downloaded on each connect. By caching the wsdl in your solution you won't have to wait for the several MB large wsdl to load each time.
View ArticleAnswered: Visual Studio and WSDL import problems and extremely slow initial...
Thank you for sharing Jan!
View ArticleAnswered: CashBookEntryData created from API has invalid remainder
Hi Luis If you don't set AmountDefaultCurrency then you're in actuality setting the Amount to have a value of 0 in the default currency. Amount + AmountDefaultCurrency + Currency must all be set and...
View ArticleAnswered: Use ConnectWithToken
We have updated the documentation since. Sorry about the confusion and thank you for detailing what caused it.https://www.e-conomic.com/developer/tutorialsNote that in the section below, "token"...
View ArticleAnswered: How to start with a clean setup??
Grab a clean demo: https://www.e-conomic.dk/regnskabsprogram/demo-alle Your developer account in just a holder og your App ID.
View ArticleProduct itemcard transactions
How to get the transactions (entries) from products itemcard. Both supplier and customer transactions? I need date, quantity, voucher, costprice, text (and salesprice)
View ArticleAnswered: More API documentation
Hi qabi, You shouldn't use the VatZone property anymore. This is only in the API for backwards compatibility. You should use the ExtendedVatZone. You can find the different ExtendedVatZones by...
View Article