Execute Liquiloans Transaction Script
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
481 B

const db = require("../../utils/db_config");
const { errorLogStatus } = require("../Errorlog");
async function getInvSummaryIdQuery(id) {
try {
let query = `select * from dbo.P2P_Liquiloans_Inv_Summarys where request_id= '${id}'`;
return await db.sequelize.query(query, { type: db.sequelize.QueryTypes.SELECT });
} catch (error) {
errorLogStatus(error, "nodeJs_liquiloan_isRequestIdPresent")
}
}
module.exports = {
getInvSummaryIdQuery
}

Powered by TurnKey Linux.