2017 © Pedro Peláez
 

library zanox-erp-api

Zanox ERP API Client

image

mike-roetgers/zanox-erp-api

Zanox ERP API Client

  • Wednesday, May 21, 2014
  • by MikeRoetgers
  • Repository
  • 2 Watchers
  • 2 Stars
  • 438 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 3 Versions
  • 4 % Grown

The README.md

zanox-erp-api

Right now only UserService.asmx and ExportService.asmx are implemented., (*1)

Usage

$userService = new UserService('username', 'password');
$userService->login();

// You can reuse the ticket, so you don't have to login for every request. Store it in a DB or sth ...
$someStorage->storeTicket($userService->getTicket());

$exportService = new ExportService($userService);
$filter = new PpsFilter('2014-05-01T00:00:00+02:00', '2014-05-02T23:59:59+02:00');
$result = $exportService->getPps($programId, $filter);

Debugging

If you need to debug your communication with the SOAP server, you can replace the SoapClient object., (*2)

$userService = new UserService('username', 'password');
$soapClient = new \SoapClient($wsdlUrl, array('trace' => true));
$userService->setClient($soapClient);

try {
    $userService->login();
} catch (\Exception $e) {
    var_dump($userService->getClient()->__getLastRequest());
}

The Versions

21/05 2014

dev-master

9999999-dev https://github.com/MikeRoetgers/zanox-erp-api

Zanox ERP API Client

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

by Mike Roetgers

api client erp zanox

21/05 2014

1.0.1

1.0.1.0 https://github.com/MikeRoetgers/zanox-erp-api

Zanox ERP API Client

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

by Mike Roetgers

api client erp zanox

21/05 2014

1.0.0

1.0.0.0 https://github.com/MikeRoetgers/zanox-erp-api

Zanox ERP API Client

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

by Mike Roetgers

api client erp zanox