46 lines
1.8 KiB
JavaScript
46 lines
1.8 KiB
JavaScript
import { AccountingSearchService } from '../services/accountingSearchService.js'
|
|
import { sendError } from '../utils/response.js'
|
|
// import { OftenError } from '../utils/oftenError.js'
|
|
import { GeneralService } from '../share/generalservice.js';
|
|
import { trim_all_array } from '../utils/trim.js'
|
|
import { verifyToken, generateToken } from '../utils/token.js'
|
|
|
|
export class accountingSearch {
|
|
|
|
constructor() {
|
|
this.generalService = new GeneralService();
|
|
this.accountingSearchService = new AccountingSearchService();
|
|
}
|
|
|
|
async onNavigate(req, res) {
|
|
this.generalService.devhint(1, 'accountingSearch.js', 'onNavigate() start');
|
|
let organization = req.body.organization;
|
|
const prommis = await this.onAccountingSearch(req, res, organization);
|
|
return prommis;
|
|
}
|
|
|
|
async onAccountingSearch(req, res, database) {
|
|
let idx = -1
|
|
let aryResult = []
|
|
try {
|
|
// let username = req.body.request.username;
|
|
// let password = req.body.request.password;
|
|
let token = req.body.request.token;
|
|
const decoded = verifyToken(token);
|
|
|
|
let id = decoded.id
|
|
let username = decoded.name
|
|
database = decoded.organization
|
|
|
|
aryResult = await this.accountingSearchService.getAccountingSearch(database, id, username); // เช็คกับ db กลาง ส่ง jwttoken ออกมา
|
|
// this.generalService.devhint(1, 'accountingSearch.js', 'Login success');
|
|
} catch (error) {
|
|
idx = 1;
|
|
} finally {
|
|
if (idx === 1) return sendError('เกิดข้อผิดพลาดไม่คาดคิดเกิดขึ้น', 'Unexpected error');
|
|
if (!aryResult) return sendError('ไม่พบการมีอยู่ของข้อมูล', 'Cannot Find Any Data');
|
|
return aryResult
|
|
}
|
|
}
|
|
}
|