- Registration confirmations attach an invoice PDF (itemized breakdown, early-bird discount, balance due, Yoco pay-now link/QR) whenever a balance is outstanding; payment/donation confirmations attach a payment receipt PDF. Sent as an email attachment and, over WhatsApp, as the PDF itself with the existing message as its caption. - Users can also (re)send either document on demand: an "Invoice" button on the registration detail popup, and a "Receipt" button next to each payment there and on the Payment history page, each opening an Email/WhatsApp choice popup, via two new endpoints restricted to the registration/payment's own owner. - Fix: editing an event option's early-bird tiers deleted and recreated every tier for that option with brand-new ids, silently severing the appliedTierId link on all historical purchases (losing early-bird attribution and undercounting stock-limit usage) even for tiers the admin didn't touch. Tiers are now upserted by id. - Update the "My Events" help content and the API docs index for the new endpoints. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
37 lines
1.4 KiB
JavaScript
37 lines
1.4 KiB
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
const {
|
|
createPayment,
|
|
getPayments,
|
|
getUserPayments,
|
|
getPaymentById,
|
|
getPaymentsByRegistration,
|
|
getPaymentsByEvent,
|
|
assignDonationToRegistration,
|
|
unassignDonationFromRegistration,
|
|
createYocoCheckout,
|
|
sendPaymentLink,
|
|
createRefund,
|
|
getPaymentStats,
|
|
sendReceipt,
|
|
} = require('../controllers/paymentController');
|
|
const { protect, supervisor, staff, admin} = require('../middleware/authMiddleware');
|
|
|
|
// Protected routes
|
|
router.post('/', protect, supervisor, createPayment);
|
|
router.post('/yoco-checkout', protect, createYocoCheckout);
|
|
router.post('/yoco-checkout/send', protect, supervisor, sendPaymentLink);
|
|
router.get('/mypayments', protect, getUserPayments);
|
|
router.post('/:id/send-receipt', protect, sendReceipt);
|
|
router.get('/:id', protect, getPaymentById);
|
|
router.get('/registration/:registrationId', protect, getPaymentsByRegistration);
|
|
|
|
// Admin/Staff routes
|
|
router.get('/', protect, supervisor, getPayments);
|
|
router.get('/event/:eventId', protect, staff, getPaymentsByEvent);
|
|
router.put('/assign-donation', protect, supervisor, assignDonationToRegistration);
|
|
router.post('/unassign-donation', protect, supervisor, unassignDonationFromRegistration);
|
|
router.post('/refund', protect, supervisor, createRefund);
|
|
router.get('/admin/stats', protect, admin, getPaymentStats);
|
|
|
|
module.exports = router; |