This commit is contained in:
x2Skyz
2025-11-25 22:06:05 +07:00
parent 1cb3a2bc2d
commit e0e7bd44e7
5 changed files with 12 additions and 9 deletions

View File

@@ -37,6 +37,7 @@ export class ProjectSearchService {
LEFT JOIN ${database}.usrmst u ON prjusrseq = usrseq
LEFT JOIN ${database}.bdgmst b ON prjbdgcod = bdgcod
WHERE 1=1
ORDER BY prjseq ASC
`;
const result = await this.generalService.executeQueryConditions(database, sql, condition);

View File

@@ -10,7 +10,7 @@ export class TransactionSearchService {
const sql = `
SELECT
${column}
FROM ${database}.bdgmst
FROM ${database}.trnmst
WHERE 1=1
`
const params = []