Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nescalante/taxbillerservice
a tax biller service interface
https://github.com/nescalante/taxbillerservice
Last synced: about 1 month ago
JSON representation
a tax biller service interface
- Host: GitHub
- URL: https://github.com/nescalante/taxbillerservice
- Owner: nescalante
- Created: 2012-11-29T12:55:05.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-05T01:27:04.000Z (about 12 years ago)
- Last Synced: 2024-04-14T22:16:12.675Z (9 months ago)
- Language: C#
- Homepage:
- Size: 3.06 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Tax Biller Service
================A service to call tax biller printers.
Supports:- EPSONFP
Proyect contains:
- a Windows Forms proyect that can be used to bill invoices
- a [Windows Service Cross Domain](https://github.com/nescalante/taxbillerservice/wiki/Using-WindowsService) that exposes the tax biller printer functions
- a [javascript file](https://github.com/nescalante/taxbillerservice/wiki/Using-taxbiller.js) to be used on a web proyect to call Windows ServiceService allow cross domain calls. Exposes three methods to bill with tax biller printers.
Printer services must be implemented as logic services in different assemblies.
##js calls
Here is an example to a call for the service from a web using taxbiller.js script:
var sampleInvoice = { "Name": "nom", "Address": "dir", Items: [ { Quantity: 3, Description: "des", Price: 1.5 } ] };
b.bill(sampleInvoice, function(data) { alert("Status: " + data.Status + "\nMessage: " + data.Message); });