๐Ÿ‘

New endpoints for SalesPriceList and DiscountAgreement

We now, in eAccounting, support creating several price lists, therefore you can have specific sales prices for an article to specific customers. Also, we support creating multiple discount agreements that could be linked to a customer. These endpoints are available only for PRO variants.

Existing salespricelists and discountagreements can now be fetched in the API.

Changelog

  • Affected endpoints:

GET /v2/salespricelists
GET /v2/salespricelists/{salesPriceListId}
GET /v2/salespricelists/prices
GET /v2/salespricelists/prices/{salesPriceListId}/{articleId}
GET /v2/discountagreements
GET /v2/discountagreements/{discountAgreementId}

๐Ÿ‘

Allow minus quantity on orders

We have added the possibility to allow minus quantity on orders in the API. The total sum of the order still needs to be positive. This gives you as a partner greater freedom in how you place your orders.

Changelog

GET v2/orders/
PUT v2/orders/
POST v2/orders/

๐Ÿ‘

New error message: Invoice with future date

A new error message will occur when trying to convert an invoice draft to an invoice which has a future date.

Changelog

  • Affected endpoints:

POST v2/customerinvoicedrafts/id/convert

๐Ÿ‘

New Property on DeliveryDate

The new property delivery date has been added. Validation will be added to quotes which means that itโ€™s not possible to select a DeliveryDate that is before the actual QuoteDate.
This provides increased security for you who are quoting.

Changelog

  • New property DeliveryDate added to the QuoteAPI entity.

New property on DueDate

by Daniel Jonsson
๐Ÿ‘

New property: DueDate

DueDate is now exposed on customerInvoiceDrafts.

Changelog

Affected endpoints:
GET v2/customerinvoicedrafts
GET v2/customerinvoicedrafts/{id}
POST v2/customerinvoicedrafts
PUT v2/customerinvoicedrafts/{id}

New property on Quote

by Henric Strรถm
๐Ÿ‘

New property on Quote

DeliveryDate has been added to the Quote model. Proper validation error will be thrown if the delivery date is earlier than the quote date.

Changelog

  • Added: DeliveryDate to the QuoteAPI model.
๐Ÿ“˜

Fixed filtering issue with PaymentStatus

On CustomerInvoiceAPI there were previously a issue when filtering on PaymentStatus. It's now fixed and can be filtered accordingly.

Changelog

  • Fixed: Filtering issue with PaymentStatus.