|
|
|
@ -10,6 +10,27 @@ const UserModel = require("../Model/User"); |
|
|
|
|
const sequelize = require("sequelize"); |
|
|
|
|
const { log } = require("winston"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Get Connection
|
|
|
|
|
exports.getconnection = asyncHandler(async (req, res, next) => { |
|
|
|
|
try { |
|
|
|
|
db.authenticate() |
|
|
|
|
.then(() => { |
|
|
|
|
res |
|
|
|
|
.send({ |
|
|
|
|
success: "true", |
|
|
|
|
description: "Connection established", |
|
|
|
|
}) |
|
|
|
|
.status(200); |
|
|
|
|
}) |
|
|
|
|
.catch((err) => { |
|
|
|
|
return next(new ErrorResponse("Connection Falied", 500)); |
|
|
|
|
}); |
|
|
|
|
} catch (ex) { |
|
|
|
|
return next(new ErrorResponse("Connection Falied", 500)); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
// Login User
|
|
|
|
|
exports.login = asyncHandler(async (req, res, next) => { |
|
|
|
|
const { username, password, DB_CODE, APP_CODE = 'POS', CUST_CODE } = req.body |
|
|
|
@ -220,7 +241,7 @@ exports.checkUsername = asyncHandler(async (req, res, next) => { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// // check user type
|
|
|
|
|
if (user.USER_TYPE == "S" || user.USER_TYPE == "C") { |
|
|
|
|
if (user.USER_TYPE == "S" || user.USER_TYPE == "C" || user.USER_TYPE == "A") { |
|
|
|
|
var userPresets = await DataModel.findAll({ |
|
|
|
|
where: { |
|
|
|
|
DATA_CODE: app.PRESET, |
|
|
|
|