Package no.sws.balance

Examples of no.sws.balance.Balance


        // get the balance (saldo) for all of your customers. Do you owe them
        // money, or do they owe you money.
        Map<Integer, Balance> balanceForAllRecipients = swsClient.getBalanceForAllRecipients();

        // get the balance (saldo) for one customer
        Balance balance = swsClient.getBalanceForRecipient(1);

        // get all debit and credit entries (kundereskontro) for
        // one customer. This is a full list of all the invoices sent from you,
        // all registered payments, credit invoices (kreditnota), etc...
        List<SalesledgerEntry> salesledgerEntries = swsClient.getSalesledgerEntries(1);
View Full Code Here

TOP

Related Classes of no.sws.balance.Balance

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.