Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | 6x 6x 4x 4x 4x 4x 4x 2x 2x 2x 4x 4x 4x 4x 2x 2x 2x 2x 2x 6x 6x 6x 6x 4x 2x 2x 2x 4x 2x 2x 2x 4x 4x 4x 2x 2x 2x 2x 2x 4x 4x 4x 2x 2x 2x 2x 2x 2x 2x 2x 4x 4x 4x 2x 2x 2x 2x 4x 4x 4x 2x 2x 2x 2x 6x 6x 6x 24x 6x 6x 4x 2x 2x 2x | import { sequelize } from '../../config/database'; import ApprovalLevelCreate from '../source/approvalLevel/create'; import ApprovalLevelDelete from '../source/approvalLevel/delete'; import ApprovalLevelInformation from '../source/approvalLevel/information'; import ApprovalLevelUpdate from '../source/approvalLevel/update'; import ApprovalLevelUserCreate from '../source/approvalLevelUser/create'; import ApprovalLevelUserDelete from '../source/approvalLevelUser/delete'; import ApprovalLevelUserInformation from '../source/approvalLevelUser/information'; async function getApprovalLevelList(req, res) { try { const approvalLevelData = await ApprovalLevelInformation.getAllApprovalLevel( {}, { userBranches: req.userBranches } ); const data = []; for (let index = 0; index < approvalLevelData.length; index++) { const element = approvalLevelData[index]; data.push({ id: element.id, branchCode: element.branchCode, branchName: element.branch ? `${element.branchCode} - ${element.branch.name}` : element.branchCode, inventoryType: element.inventoryType, note: element.note ? element.note : '', }); } res.json({ success: true, data }); } catch (err) { // eslint-disable-next-line no-console console.log(err); const response = { success: false, }; res.json(response); } } async function deleteApprovalLevel(req, res) { const { approvalLevelId } = req.body; try { await sequelize.transaction(async (transaction) => { await ApprovalLevelDelete.deleteApprovalLevel(approvalLevelId, { transaction, }); await ApprovalLevelUserDelete.deleteQueryApprovalLevelUser( { approvalLevelId }, { transaction } ); }); res.json({ success: true }); } catch (err) { // eslint-disable-next-line no-console console.log(err); const response = { success: false, }; res.json(response); } } async function createApprovalLevel(req, res) { const { branchCode, inventoryType, note = '', linkUsersList = [] } = req.body; try { await sequelize.transaction(async (transaction) => { const approvalLevel = await ApprovalLevelCreate.createApprovalLevel( { branchCode, inventoryType, note, createdUser: req.userId, updatedUser: req.userId, }, { transaction } ); if (approvalLevel && linkUsersList.length) { for (let index = 0; index < linkUsersList.length; index++) { const element = linkUsersList[index]; await ApprovalLevelUserCreate.createApprovalLevelUser( { approvalLevelId: approvalLevel.id, userId: element.userId, maximumValue: element.maximumValue, minimumValue: element.minimumValue, createdUser: req.userId, updatedUser: req.userId, }, { transaction } ); } } res.json({ success: true }); }); } catch (err) { // eslint-disable-next-line no-console console.log(err); const response = { success: false, }; res.json(response); } } async function getApprovalLevelDetail(req, res) { const { approvalLevelId } = req.query; try { const approvalLevelData = await ApprovalLevelInformation.getApprovalLevel( { id: approvalLevelId }, { userBranches: req.userBranches, } ); const data = { branchCode: approvalLevelData.branchCode, branchName: `${approvalLevelData.branchCode} - ${approvalLevelData.branch.name}`, inventoryType: approvalLevelData.inventoryType, note: approvalLevelData.note, }; res.json({ success: true, data }); } catch (err) { // eslint-disable-next-line no-console console.log(err); const response = { success: false, }; res.json(response); } } async function getApprovalLevelUser(req, res) { const { approvalLevelId } = req.query; try { const approvalLevelUserData = await ApprovalLevelUserInformation.getAllApprovalLevelUser({ approvalLevelId, }); const data = []; for (let index = 0; index < approvalLevelUserData.length; index++) { const element = approvalLevelUserData[index]; data.push({ approvalLevelUserId: element.id, minimumValue: element.minimumValue, maximumValue: element.maximumValue, userId: element.userId, userLogin: `${element.linkUser.login} - ${element.linkUser.name}`, }); } res.json({ success: true, data }); } catch (err) { // eslint-disable-next-line no-console console.log(err); const response = { success: false, }; res.json(response); } } async function createApprovalLevelUser(req, res) { const { approvalLevelId, userId, maximumValue, minimumValue } = req.body; try { await ApprovalLevelUserCreate.createApprovalLevelUser({ approvalLevelId, userId, maximumValue, minimumValue, createdUser: req.userId, updatedUser: req.userId, }); res.json({ success: true }); } catch (err) { // eslint-disable-next-line no-console console.log(err); const response = { success: false, }; res.json(response); } } async function deleteApprovalLevelUser(req, res) { const { approvalLevelUserId } = req.body; try { await ApprovalLevelUserDelete.deleteApprovalLevelUser(approvalLevelUserId); res.json({ success: true }); } catch (err) { // eslint-disable-next-line no-console console.log(err); const response = { success: false, }; res.json(response); } } async function updateApprovalLevel(req, res) { const { approvalLevelId, branchCode, inventoryType, note } = req.body; const approvalLevel = { branchCode, inventoryType, note, updatedUser: req.userId, }; Object.keys(approvalLevel).forEach( (key) => approvalLevel[key] == null && delete approvalLevel[key] ); try { await ApprovalLevelUpdate.updateApprovalLevel( approvalLevelId, approvalLevel ); res.json({ success: true }); } catch (err) { // eslint-disable-next-line no-console console.log(err); const response = { success: false, }; res.json(response); } } export default { getApprovalLevelList, deleteApprovalLevel, createApprovalLevel, getApprovalLevelDetail, getApprovalLevelUser, createApprovalLevelUser, deleteApprovalLevelUser, updateApprovalLevel, }; |