theendsoaper
Version:
Access Untill Tills with SOAP from Node.js and parse the results as objects, some extra useful functions in as well.
36 lines (25 loc) • 603 B
JavaScript
module.exports = class FunctionTypes {
constructor(){
}
getActiveOrders(){
return "GetActiveOrders";
}
getActiveTableInfo(){
return "GetActiveTableInfo";
}
getArticlesInfo(){
return "GetArticlesInfo";
}
getCancelledItemsReport(){
return "GetCancelledItemsReport";
}
getDetailedTurnoverReport() {
return "GetDetailedTurnoverReport";
}
getInOutCashReport(){
return "GetInOutCashReport";
}
orderDrinks(){
return "OrderDrinks";
}
}