Skip to content

Starchup/node-fabricare

Repository files navigation

node-fabricare

Fabricare POS Wrapper in NodeJS, fully promisified

Initialization

var FABRI = require('node-fabricare');
var options = {
    User: "your_user",
    Password: "your_password",
    Prefix: "your_prefix",
    Port: "your_port",
    IP: "your_ip"
}
var pos = new FABRI(options);

Basic use

Call fabricare for full documentation, but here are a few basics:

pos.Customer.CreateCustomer({ email: "a@b.com", firstName: "a", lastName: "b" });
pos.Customer.GetCustomer("id");
pos.Customer.GetCustomers({ firstName: "c" });
pos.Customer.UpdateCustomer("id", { firstName: "d" });

pos.Order.Exists(order_id);
pos.Order.FindById(order_id);
pos.Order.Create(order_object);
pos.Order.Update(order_id, order_object);
pos.Order.Sold(order_id);
pos.Order.Status(order_id);

pos.Invoice.Exists(order_id);
pos.Invoice.FindById(order_id);

Tests

npm test will run a linter and the tests in test.js
The tests will not pass unless you edit the configuration there and set it to your Fabricare Instance.
Feel free to use those tests as reference for your implementation.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published