Skip to content

Commit eb9d820

Browse files
authored
Merge pull request hernansartorio#8 from kumargugloth/develop
fixes user numbers
2 parents 21d74dc + d58a15e commit eb9d820

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

routes/user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ router.post('/test_textlocal', verifyToken, (req, res, next) => {
986986
let EVENT_CANCELLED_FOR_MANAGER = `Your Turf town booking for event ${booking_id} for ${venue}scheduled at ${date} has been cancelled.\nStatus : USERCANCELLED` ///490748
987987
let SLOT_CANCELLED_BY_VENUE_MANAGER_TO_USER = `Your Turf town booking ${venue} scheduled for ${date} at ${venue} has been cancelled by the venue .\nStatus : cancelled for purpose\nPlease contact the venue ${numbers} for more information.` //490759
988988
// let SLOT_CANCELLED_BY_VENUE_MANAGER = `Your booking ${booking_id} scheduled ${date} at ${venue} has been cancelled. Please contact the venue for more info` ///418833
989-
let EVENT_BOOKED_MANAGER = `You have received a new registration for the event.\nEvent Name : MADRAS MUNDIYAL\nEvent Date : 20191218\nUser Name : TURF\nTeam Name : TEST\nBooking id : TT10020\nSport : FOOTBALL\nTT Coupon : 100\nAmount Paid : 100\nBalance to be paid at the event : 100` //491399
989+
let EVENT_BOOKED_MANAGER = `You have received a new registration for the event.\nEvent Name : EVENT ORGANIZER\nEvent Date : 29thFEb\nUser Name : Nobin\nTeam Name : Hyderabad\nBooking id : TTE100\nSport : FOOTBALL\nTT Coupon : 100\nAmount Paid : 200\nBalance to be paid at the event : 100` //491399
990990
// let SLOT_CANCELLED_BY_VENUE_MANAGER = `Your booking ${booking_id} scheduled ${date} at ${venue},${" "+venue} has been cancelled. Please contact the venue for more info` ///418833
991991
// let EVENT_BOOKED_USER = `Your Turf Town event booking for MADRAS MUNDITAL has been confirmed.\nDate : ${date}\nTeam Name : ${team_name}\nSport : ${sport}(${type})\nRegisteration ID : ${booking_id}\nAmount Paid : Rs.${amount}${""}\nTT Coupon : 0\nBalance to be paid at event : ${balance}\nPlease contact ${numbers} for more details.`//491330
992992
//Send SMS
@@ -1219,7 +1219,7 @@ router.post('/cancel_booking/:id', verifyToken, (req, res, next) => {
12191219
// })
12201220
// let USER_CANCEL_WITHOUT_REFUND = `Your Turf Town booking ${booking_id} scheduled for ${datetime} at ${venue_name}, ${venue_area} (${venue_type}) has been cancelled.\nAs the slot has been cancelled with less than 6 hours to the scheduled time, advance paid of ${booking_amount} will be charged as a cancellation fee.`//490447
12211221
// let VENUE_CANCEL_WITHOUT_REFUND = `Turf Town booking ${booking_id} scheduled for ${datetime} at ${venue_name}, ${venue_area} (${venue_type}) has been cancelled by the user.\n ${booking[0].name}(${booking[0].phone}) \nAs the slot has been cancelled with less than 6 hours to the scheduled time, advance paid of ${booking_amount} will be charged to the user as a cancellation fee.`//490533
1222-
let venue_manager_phone = phone_numbers.join(",")
1222+
let venue_manager_phone = "91"+venue.venue.contact
12231223
let USER_CANCEL_WITHOUT_REFUND = `Your Turf Town booking ${booking_id} scheduled for ${datetime} at ${venue_name}, ${venue_area} (${venue_type}) has been cancelled.\nAs the slot has been cancelled with less than 6 hours to the scheduled time, advance paid of Rs.${booking_amount} will be charged as a cancellation fee.`//490447
12241224
let VENUE_CANCEL_WITHOUT_REFUND = `Turf Town booking ${booking_id} scheduled for ${datetime} at ${venue_name}, ${venue_area} (${venue_type}) has been cancelled by the user.\n ${booking[0].name}(${phone}) \nAs the slot has been cancelled with less than 6 hours to the scheduled time, advance paid of Rs.${booking_amount} will be charged to the user as a cancellation fee.`//490533
12251225
////user cancel with refund

0 commit comments

Comments
 (0)