Skip to content

sismics/play-dolibarr

Repository files navigation

GitHub release License

play-dolibarr plugin

This plugin adds Dolibarr support to Play! Framework 1 applications.

Features

How to use

Add the dependency to your dependencies.yml file

require:
    - dolibarr -> dolibarr 1.8.2

repositories:
    - sismicsNexusRaw:
        type: http
        artifact: "https://nexus.sismics.com/repository/sismics/[module]-[revision].zip"
        contains:
            - dolibarr -> *

Set configuration parameters

Add the following parameters to application.conf:

# Dolibarr configuration
# ~~~~~~~~~~~~~~~~~~~~
dolibarr.mock=false
dolibarr.api.url=https://dolibarr.example.com/api/index.php
dolibarr.dolapikey=12345678

Use the API

List<BankAccount> accounts = DolibarrClient.get().getBankAccountService().listBankAccount();

Mock the Dolibarr server in dev

We recommand to mock Dolibarr in development mode and test profile.

Use the following configuration parameter:

dolibarr.mock=true

License

This software is released under the terms of the Apache License, Version 2.0. See LICENSE for more information or see https://opensource.org/licenses/Apache-2.0.