@ -0,0 +1,50 @@ |
|||||||
|
const asyncHandler = require("../Middleware/async"); |
||||||
|
const sequelize = require('sequelize') |
||||||
|
const DataModel = require("../Model/TD_DATA"); |
||||||
|
|
||||||
|
exports.getAllSubscriptions = asyncHandler(async (req, res, next) => { |
||||||
|
|
||||||
|
DataModel.findAll({ |
||||||
|
where: { |
||||||
|
DATA_TYPE: "POS_PLAN" |
||||||
|
}, |
||||||
|
order: [ |
||||||
|
[sequelize.literal('CAST([FIELD_2] AS FLOAT)'), 'ASC'] // Sort by FIELD_2(Price) as integer
|
||||||
|
] |
||||||
|
|
||||||
|
|
||||||
|
}).then((data) => { |
||||||
|
return res.status(200).send(JSON.stringify( |
||||||
|
{ |
||||||
|
success: true, |
||||||
|
data |
||||||
|
} |
||||||
|
)); |
||||||
|
}); |
||||||
|
}) |
||||||
|
|
||||||
|
exports.getSubscriptionByID = asyncHandler(async (req, res, next) => { |
||||||
|
|
||||||
|
const { id } = req.query; |
||||||
|
console.log("PLAN ID :", id) |
||||||
|
|
||||||
|
DataModel.findOne({ |
||||||
|
where: { |
||||||
|
ID: id, |
||||||
|
DATA_TYPE: "POS_PLAN" |
||||||
|
}, |
||||||
|
order: [ |
||||||
|
[sequelize.literal('CAST([FIELD_2] AS FLOAT)'), 'ASC'] // Sort by FIELD_2(Price) as integer
|
||||||
|
] |
||||||
|
|
||||||
|
|
||||||
|
}).then((data) => { |
||||||
|
console.log("GET SUBSCRIPTION BY ID", data.DATA_CODE) |
||||||
|
return res.status(200).send(JSON.stringify( |
||||||
|
{ |
||||||
|
success: true, |
||||||
|
data |
||||||
|
} |
||||||
|
)); |
||||||
|
}); |
||||||
|
}) |
@ -1,9 +1,26 @@ |
|||||||
const express = require('express') |
const express = require('express') |
||||||
const route = express.Router() |
const route = express.Router() |
||||||
const controller = require("../Controller/Store") |
const controller = require("../Controller/Store") |
||||||
const { protect } = require("../Middleware/auth") |
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("/").get(protect, controller.getStoreInfo) |
route.route("/").get(protect, controller.getStoreInfo) |
||||||
route.route("/register").post(protect, controller.registerStore) |
route.route("/register").post(upload.single("store_image"), protectAtlogin, controller.registerStore) |
||||||
|
|
||||||
module.exports = route;
|
module.exports = route;
|
@ -0,0 +1,9 @@ |
|||||||
|
const express = require("express"); |
||||||
|
const route = express.Router(); |
||||||
|
const controller = require("../Controller/Subscriptions"); |
||||||
|
const { protectAtlogin } = require("../Middleware/auth"); |
||||||
|
|
||||||
|
route.route('/').get(protectAtlogin, controller.getAllSubscriptions) |
||||||
|
route.route('/id').get(protectAtlogin, controller.getSubscriptionByID) |
||||||
|
|
||||||
|
module.exports = route; |
After Width: | Height: | Size: 102 KiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 2.1 MiB |
After Width: | Height: | Size: 586 KiB |
After Width: | Height: | Size: 586 KiB |
After Width: | Height: | Size: 742 KiB |