add /cash ui
This commit is contained in:
parent
63346de8c1
commit
cd169641af
@ -3,11 +3,8 @@ module.exports = {
|
|||||||
|
|
||||||
list: async function (req, res) {
|
list: async function (req, res) {
|
||||||
try {
|
try {
|
||||||
const transactions = await cashTransactionModel.find()
|
const transactions = await cashTransactionModel.find({}, { _id: 0, __v: 0 });
|
||||||
const data = {
|
return res.json(transactions);
|
||||||
messages: transactions
|
|
||||||
};
|
|
||||||
return res.render('cash', data);
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return res.status(500).json({
|
return res.status(500).json({
|
||||||
message: 'Error when getting transactions.',
|
message: 'Error when getting transactions.',
|
||||||
@ -19,6 +16,8 @@ module.exports = {
|
|||||||
create: async function (req, res) {
|
create: async function (req, res) {
|
||||||
const rawString = req.body.messageBody;
|
const rawString = req.body.messageBody;
|
||||||
|
|
||||||
|
if (rawString == "") return res.status(400).json({ message: "empty string" });
|
||||||
|
|
||||||
const transaction = new cashTransactionModel({
|
const transaction = new cashTransactionModel({
|
||||||
raw: rawString,
|
raw: rawString,
|
||||||
day: 0,
|
day: 0,
|
||||||
|
@ -2,7 +2,7 @@ var express = require('express');
|
|||||||
var router = express.Router();
|
var router = express.Router();
|
||||||
const cashTransaction = require('../../controllers/cashTransactionController.js')
|
const cashTransaction = require('../../controllers/cashTransactionController.js')
|
||||||
|
|
||||||
router.get('/', cashTransaction.list);
|
router.post('/list', cashTransaction.list);
|
||||||
|
|
||||||
router.post('/', cashTransaction.create);
|
router.post('/', cashTransaction.create);
|
||||||
|
|
||||||
|
@ -18,6 +18,10 @@ router.get('/list', function (req, res, next) {
|
|||||||
res.render('list', { title: 'List' });
|
res.render('list', { title: 'List' });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
router.get('/cash', function (req, res, next) {
|
||||||
|
res.render('cash', { title: 'Cash' });
|
||||||
|
});
|
||||||
|
|
||||||
const userRouter = require('./user');
|
const userRouter = require('./user');
|
||||||
//router.use('/user', userRouter);
|
//router.use('/user', userRouter);
|
||||||
|
|
||||||
|
@ -1,5 +1,24 @@
|
|||||||
<h1>Message:</h1>
|
<script src="/assets/build/cash.js"></script>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
|
||||||
|
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||||
|
<form class="d-flex" action="" id="myform">
|
||||||
|
<input class="form-control me-2" type="password" name="password" id="pass" placeholder="password">
|
||||||
|
<input class="btn btn-outline-success" type="submit" value="Submit">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="bg-body-tertiary pt-5 pb-5">
|
||||||
|
<div class="container">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -13,20 +32,8 @@
|
|||||||
<th scope="col">Raw</th>
|
<th scope="col">Raw</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody id="tbody">
|
||||||
|
|
||||||
{{#each messages}}
|
|
||||||
<tr>
|
|
||||||
<th scope="row">{{@index}}</th>
|
|
||||||
<td>{{day}}</td>
|
|
||||||
<td>{{month}}</td>
|
|
||||||
<td>{{year}}</td>
|
|
||||||
<td>{{amount}} EUR</td>
|
|
||||||
<td>{{type}}</td>
|
|
||||||
<td>{{company}}</td>
|
|
||||||
<td>{{raw}}</td>
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
</main>
|
Loading…
x
Reference in New Issue
Block a user