parent
2837a67fbc
commit
6654c84aeb
9 changed files with 503 additions and 1 deletions
@ -0,0 +1,142 @@ |
|||||||
|
const asyncHandler = require("../Middleware/async"); |
||||||
|
const sequelize = require('sequelize') |
||||||
|
const db = require("../Config/db"); |
||||||
|
const ErrorResponse = require("../utils/errorResponse"); |
||||||
|
const { getInventoryMovementTable } = require("../Model/Inventory_Movement_Model"); |
||||||
|
const ItemModel = require("../Model/ItemModel"); |
||||||
|
|
||||||
|
|
||||||
|
exports.getAllStock = asyncHandler(async (req, res, next) => { |
||||||
|
try { |
||||||
|
const userDBCode = req.user.DB_CODE; |
||||||
|
if (!userDBCode) { |
||||||
|
return next(new ErrorResponse("Store Code not found or disabled", 400)); |
||||||
|
} |
||||||
|
|
||||||
|
const InventoryModel = getInventoryMovementTable(`${userDBCode}TDINVMOV`); |
||||||
|
let allInventory = await InventoryModel.findAll({ |
||||||
|
raw: true |
||||||
|
}); |
||||||
|
|
||||||
|
// Map over all inventory items and fetch associated item details
|
||||||
|
const inventoryWithDetails = await Promise.all(allInventory.map(async (inv) => { |
||||||
|
const item = await ItemModel.findOne({ |
||||||
|
where: { |
||||||
|
ITEM_CODE: inv.ITEM_CODE, |
||||||
|
DB_CODE: userDBCode |
||||||
|
}, |
||||||
|
attributes: ['ITEM_BCODE', 'ITEM_DESC', 'ITEM_COST1', 'ITEM_PRICE1', 'CAT_CODE'], // specify only the necessary fields to fetch
|
||||||
|
raw: true |
||||||
|
}); |
||||||
|
|
||||||
|
// Merge item details with inventory data
|
||||||
|
return { |
||||||
|
...inv, |
||||||
|
ITEM_NAME: item ? item.ITEM_DESC : null, |
||||||
|
ITEM_IMAGE: item ? item.ITEM_IMG : null, |
||||||
|
ITEM_COST1: item ? item.ITEM_COST1 : null, |
||||||
|
ITEM_PRICE1: item ? item.ITEM_PRICE1 : null, |
||||||
|
}; |
||||||
|
})); |
||||||
|
|
||||||
|
return res.status(200).json({ |
||||||
|
success: true, |
||||||
|
data: inventoryWithDetails |
||||||
|
}); |
||||||
|
} catch (err) { |
||||||
|
console.log("ERROR GET ALL STORE", err); |
||||||
|
return next(new ErrorResponse("Failed to retrieve stock", 400)); // More specific error message
|
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
|
||||||
|
exports.createStock = asyncHandler(async (req, res, next) => { |
||||||
|
const t = await db.transaction() |
||||||
|
try { |
||||||
|
const userDBCode = req.user.DB_CODE |
||||||
|
if (!userDBCode) { |
||||||
|
return next(new ErrorResponse("Store Code not found or disabled", 400)); |
||||||
|
} |
||||||
|
|
||||||
|
const InventoryModel = getInventoryMovementTable(`${userDBCode}TDINVMOV`) |
||||||
|
const maxSequenceQty = await db.query(`SELECT MAX(SEQUENCE)+1 AS MAX FROM ${userDBCode}TDINVMOV`, |
||||||
|
{ |
||||||
|
transaction: t, |
||||||
|
type: sequelize.QueryTypes.SELECT |
||||||
|
}).catch((err) => { |
||||||
|
throw `Cannot query max sequence ${err}`; |
||||||
|
}) |
||||||
|
|
||||||
|
// check whether ITEM_CODE exists in the database
|
||||||
|
const itemCode = await ItemModel.findOne({ |
||||||
|
where: { |
||||||
|
ITEM_CODE: req.body.ITEM_CODE, |
||||||
|
DB_CODE: userDBCode |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
if (!itemCode) { |
||||||
|
return next(new ErrorResponse("Item Code not found", 400)); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
const { MOV_PRD, MOV_REF, MOV_LINE, LOCATION, ITEM_CODE, MOV_DATE, STATUS, IR_STAT, BATCH_NO, BATCH_LINE, LINE_REF, QUANTITY, COST, TOTAL } = req.body |
||||||
|
const newInventory = await InventoryModel.create({ |
||||||
|
SEQUENCE: maxSequenceQty[0]?.MAX || 1, |
||||||
|
ID_ALLOC: req.user.USER_ID, |
||||||
|
REC_TYPE: "T", |
||||||
|
MOV_UNITS: "1", |
||||||
|
MOV_TYPE: "OB", |
||||||
|
UPDTE_PHYS: "", |
||||||
|
UPDTE_ORDR: "", |
||||||
|
ALLOC_REF: req.user.DB_CODE + generateTimestampBasedAllocRef(), |
||||||
|
ACCNT_CODE: "", |
||||||
|
ASSET_CODE: req.body.ASSET_CODE || "", |
||||||
|
ANAL_M0: req.body.ANAL_M0 || "", |
||||||
|
ANAL_M1: req.body.ANAL_M1 || "", |
||||||
|
ANAL_M2: req.body.ANAL_M2 || "", |
||||||
|
ANAL_M3: req.body.ANAL_M3 || "", |
||||||
|
ANAL_M4: req.body.ANAL_M4 || "", |
||||||
|
ANAL_M5: req.body.ANAL_M5 || "", |
||||||
|
ANAL_M6: req.body.ANAL_M6 || "", |
||||||
|
ANAL_M7: req.body.ANAL_M7 || "", |
||||||
|
ANAL_M8: req.body.ANAL_M8 || "", |
||||||
|
ANAL_M9: req.body.ANAL_M9 || "", |
||||||
|
ORIG_LINE_NO: req.body.ORIG_LINE_NO || "", |
||||||
|
PO_VALUE: req.body.PO_VALUE || 0, |
||||||
|
ID_ENTERED: req.user.USER_NAME, |
||||||
|
ID_ALLOC: req.user.USER_NAME, |
||||||
|
|
||||||
|
MOV_PRD, MOV_REF, MOV_LINE, LOCATION, ITEM_CODE, MOV_DATE, STATUS, IR_STAT, BATCH_NO, BATCH_LINE, LINE_REF, QUANTITY, COST, TOTAL, |
||||||
|
|
||||||
|
}) |
||||||
|
// const allInventory = await InventoryModel.findAll()
|
||||||
|
return res.status(200).json({ |
||||||
|
success: true, |
||||||
|
data: newInventory |
||||||
|
}) |
||||||
|
} catch (err) { |
||||||
|
console.log("ERROR GET ALL STORE", err) |
||||||
|
await t.rollback() |
||||||
|
return next(new ErrorResponse(err, 400)); |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
function generateTimestampBasedAllocRef() { |
||||||
|
const now = new Date(); |
||||||
|
const year = now.getFullYear(); |
||||||
|
const month = (now.getMonth() + 1).toString().padStart(2, '0'); // Month is zero-indexed, add 1 and pad it to ensure two digits
|
||||||
|
const day = now.getDate().toString().padStart(2, '0'); |
||||||
|
const hours = now.getHours().toString().padStart(2, '0'); |
||||||
|
const minutes = now.getMinutes().toString().padStart(2, '0'); |
||||||
|
const seconds = now.getSeconds().toString().padStart(2, '0'); |
||||||
|
const milliseconds = now.getMilliseconds().toString().padStart(3, '0'); |
||||||
|
|
||||||
|
const allocRef = `-${year}${month}${day}${hours}${minutes}`; |
||||||
|
console.log("ALLOC REF", allocRef) |
||||||
|
return allocRef; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,58 @@ |
|||||||
|
const asyncHandler = require("../Middleware/async"); |
||||||
|
const sequelize = require('sequelize') |
||||||
|
const db = require('../Config/db') |
||||||
|
const WarehouseModel = require('../Model/WarehouseModel') |
||||||
|
const ErrorResponse = require('../utils/ErrorResponse') |
||||||
|
const fs = require('fs'); |
||||||
|
const SuccessResponse = require('../utils/SuccessResponse'); |
||||||
|
const dateFormat = require('dateformat') |
||||||
|
|
||||||
|
exports.getAllWarehouse = asyncHandler(async (req, res, next) => { |
||||||
|
try { |
||||||
|
const warehouse = await WarehouseModel.findAll({ |
||||||
|
where: |
||||||
|
{ |
||||||
|
DB_CODE: req.user.DB_CODE, |
||||||
|
WAR_STAT: 'A' |
||||||
|
} |
||||||
|
|
||||||
|
}) |
||||||
|
if (!warehouse) { |
||||||
|
return next(new ErrorResponse("Warehouse not found", 404)) |
||||||
|
} |
||||||
|
res.status(200).json(new SuccessResponse(200, warehouse)) |
||||||
|
|
||||||
|
} catch (e) { |
||||||
|
return next(new ErrorResponse(e, 500)) |
||||||
|
|
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
exports.createWarehouse = asyncHandler(async (req, res, next) => { |
||||||
|
try { |
||||||
|
var date = dateFormat(new Date(), "yyyy-mm-dd HH:mm:ss") |
||||||
|
await db.transaction(async (t) => { |
||||||
|
const warehouse = await WarehouseModel.create({ |
||||||
|
DB_CODE: req.user.DB_CODE, |
||||||
|
WAR_CODE: req.body.WAR_CODE, |
||||||
|
WAR_NAME: req.body.WAR_NAME, |
||||||
|
WAR_DESC: req.body.WAR_DESC ?? "", |
||||||
|
WAR_ADD1: req.body.WAR_ADDRESS ?? "", |
||||||
|
WAR_ADD2: req.body.WAR_ADD2 ?? "", |
||||||
|
WAR_ADD3: req.body.WAR_ADD3 ?? "", |
||||||
|
WAR_TEL1: req.body.WAR_TEL1 ?? "", |
||||||
|
WAR_TEL2: req.body.WAR_TEL2 ?? "", |
||||||
|
WAR_FAX: req.body.WAR_FAX ?? "", |
||||||
|
WAR_COM1: req.body.WAR_COM1 ?? "", |
||||||
|
WAR_COM2: req.body.WAR_COM2 ?? "", |
||||||
|
WAR_CREA: date, |
||||||
|
USER_CODE: req.user.USER_CODE, |
||||||
|
WAR_STAT: 'A' |
||||||
|
}, { transaction: t }) |
||||||
|
res.status(200).json(new SuccessResponse(200, warehouse)) |
||||||
|
}) |
||||||
|
} catch (e) { |
||||||
|
console.log("ERROR CREATING WAREHOUSE ", e) |
||||||
|
return next(new ErrorResponse(`Something when wrong ${e}`, 500)); |
||||||
|
} |
||||||
|
}) |
@ -0,0 +1,140 @@ |
|||||||
|
const db = require("../Config/db"); |
||||||
|
const sequelize = require("sequelize"); |
||||||
|
|
||||||
|
const modelCache = {}; |
||||||
|
|
||||||
|
function getInventoryMovementTable(tableName) { |
||||||
|
console.log("MODEL CACHE ", modelCache); |
||||||
|
if (!modelCache[tableName]) { |
||||||
|
const model = db.define( |
||||||
|
tableName, |
||||||
|
{ |
||||||
|
SEQUENCE: { |
||||||
|
type: sequelize.INTEGER |
||||||
|
}, |
||||||
|
REC_TYPE: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
MOV_PRD: { |
||||||
|
type: sequelize.INTEGER |
||||||
|
}, |
||||||
|
MOV_REF: { |
||||||
|
primaryKey: true, |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
MOV_LINE: { |
||||||
|
primaryKey: true, |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
LOCATION: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ITEM_CODE: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
MOV_DATE: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
STATUS: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
IR_STAT: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
BATCH_NO: { |
||||||
|
type: sequelize.INTEGER |
||||||
|
}, |
||||||
|
BATCH_LINE: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
LINE_REF: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
QUANTITY: { |
||||||
|
type: sequelize.FLOAT |
||||||
|
}, |
||||||
|
COST: { |
||||||
|
type: sequelize.FLOAT |
||||||
|
}, |
||||||
|
TOTAL: { |
||||||
|
type: sequelize.FLOAT |
||||||
|
}, |
||||||
|
MOV_UNITS: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
MOV_TYPE: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
UPDTE_PHYS: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
UPDTE_ORDR: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ALLOC_REF: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ACCNT_CODE: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ASSET_CODE: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M0: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M1: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M2: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M3: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M4: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M5: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M6: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M7: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M8: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ANAL_M9: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ORIG_LINE_NO: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
PO_VALUE: { |
||||||
|
type: sequelize.FLOAT |
||||||
|
}, |
||||||
|
ID_ENTERED: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
ID_ALLOC: { |
||||||
|
type: sequelize.STRING |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
timestamps: false, |
||||||
|
freezeTableName: true |
||||||
|
} |
||||||
|
); |
||||||
|
|
||||||
|
model.removeAttribute('id'); |
||||||
|
|
||||||
|
modelCache[tableName] = model; |
||||||
|
} |
||||||
|
return modelCache[tableName]; |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
module.exports = { getInventoryMovementTable }; |
@ -0,0 +1,31 @@ |
|||||||
|
const sequelize = require("sequelize") |
||||||
|
const db = require("../Config/db"); |
||||||
|
|
||||||
|
const SupplierItem = db.define( |
||||||
|
'TDITEMSP', |
||||||
|
{ |
||||||
|
ITEM_CODE: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
DB_CODE: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
SUPP_CODE: { |
||||||
|
type: sequelize.STRING |
||||||
|
}, |
||||||
|
SUPP_COST: { |
||||||
|
type: sequelize.NUMERIC |
||||||
|
}, |
||||||
|
SUPP_UNIT: { |
||||||
|
type: sequelize.STRING |
||||||
|
} |
||||||
|
|
||||||
|
}, |
||||||
|
{ |
||||||
|
timestamps: false, |
||||||
|
freezeTableName: true, |
||||||
|
} |
||||||
|
) |
||||||
|
|
||||||
|
SupplierItem.removeAttribute('id') |
||||||
|
module.exports = SupplierItem; |
@ -0,0 +1,61 @@ |
|||||||
|
const sequelize = require('sequelize') |
||||||
|
const db = require('../Config/db') |
||||||
|
|
||||||
|
const WarehouseModel = db.define( |
||||||
|
'TDWAREH', |
||||||
|
{ |
||||||
|
DB_CODE: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_CODE: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_NAME: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_DESC: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_ADD1: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_ADD2: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_ADD3: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_TEL1: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_TEL2: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_FAX: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_COM1: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_COM2: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_STAT: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
USER_CODE: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
WAR_CREA: { |
||||||
|
type: sequelize.STRING, |
||||||
|
}, |
||||||
|
}, |
||||||
|
{ |
||||||
|
timestamps: false, |
||||||
|
freezeTableName: true, |
||||||
|
} |
||||||
|
) |
||||||
|
|
||||||
|
|
||||||
|
WarehouseModel.removeAttribute('id') |
||||||
|
module.exports = WarehouseModel; |
@ -0,0 +1,27 @@ |
|||||||
|
const express = require('express') |
||||||
|
const route = express.Router() |
||||||
|
const controller = require("../Controller/Inventory_Movement") |
||||||
|
const { protect, protectAtlogin } = require("../Middleware/auth") |
||||||
|
|
||||||
|
// const multer = require('multer')
|
||||||
|
// const moment = require('moment')
|
||||||
|
|
||||||
|
// var storage = multer.diskStorage({
|
||||||
|
// destination: function (req, file, cb) {
|
||||||
|
// if (file.fieldname == "store_image") cb(null, "upload/store/tmp_post");
|
||||||
|
// },
|
||||||
|
// filename: function (req, file, cb) {
|
||||||
|
// cb(
|
||||||
|
// null,
|
||||||
|
// moment(Date.now()).format("YYYY-MM-DD_HH-mm-ss_") + file.originalname
|
||||||
|
// );
|
||||||
|
// },
|
||||||
|
// });
|
||||||
|
|
||||||
|
// var upload = multer({ storage: storage });
|
||||||
|
|
||||||
|
route.route("/add_stock").post(protect, controller.createStock) |
||||||
|
route.route("/get_all_stock").get(protect, controller.getAllStock) |
||||||
|
// route.route("/register").post(upload.single("store_image"), protectAtlogin, controller.registerStore)
|
||||||
|
|
||||||
|
module.exports = route;
|
@ -0,0 +1,27 @@ |
|||||||
|
const express = require("express"); |
||||||
|
const route = express.Router(); |
||||||
|
const controller = require("../Controller/Warehouse"); |
||||||
|
const { protect } = require("../Middleware/auth") |
||||||
|
|
||||||
|
// const multer = require("multer");
|
||||||
|
// const moment = require("moment");
|
||||||
|
// var storage = multer.diskStorage({
|
||||||
|
// destination: function (req, file, cb) {
|
||||||
|
// if (file.fieldname == "supplier_image") cb(null, "uploads/supplier/tmp_post");
|
||||||
|
// },
|
||||||
|
|
||||||
|
// filename: function (req, file, cb) {
|
||||||
|
// cb(
|
||||||
|
// null,
|
||||||
|
// moment(Date.now()).format("YYYY-MM-DD_HH-mm-ss_") + file.originalname
|
||||||
|
// );
|
||||||
|
// },
|
||||||
|
// });
|
||||||
|
|
||||||
|
// var upload = multer({ storage: storage });
|
||||||
|
|
||||||
|
|
||||||
|
route.route('/').get(protect, controller.getAllWarehouse) |
||||||
|
route.route('/').post(protect, controller.createWarehouse) |
||||||
|
|
||||||
|
module.exports = route; |
Loading…
Reference in new issue