|
23 | 23 | url(r'^record-meal/', views.record_meal, name = 'record_meal'), |
24 | 24 | url(r'^bill/', views.bill_generation, name = 'bill_generation'), |
25 | 25 | url(r'^update-booking/', views.update_booking, name = 'update_booking'), |
| 26 | + url(r'^check-out-with-inventory/', views.check_out_with_inventory, name = 'check_out_with_inventory'), |
26 | 27 |
|
27 | 28 | url(r'^bill_between_date_range/', views.bill_between_dates, name = 'generate_records'), |
28 | 29 | url(r'^room-availability/', views.room_availabity, name = 'room_availabity'), |
|
31 | 32 | url(r'^check-partial-booking/', views.check_partial_booking, name='check_partial_booking'), |
32 | 33 |
|
33 | 34 |
|
| 35 | + url(r'^room_availabity_new/', views.room_availabity_new, name = 'room_availabity_new'), |
| 36 | + |
| 37 | + url(r'^check-partial-booking/', views.check_partial_booking, name='check_partial_booking'), |
| 38 | + |
| 39 | + |
34 | 40 | url(r'^add-to-inventory/', views.add_to_inventory, name = 'add_to_inventory'), |
35 | 41 | url(r'^update-inventory/', views.update_inventory, name = 'update_inventory'), |
36 | 42 | url(r'^edit-room-status/', views.edit_room_status, name = 'edit_room_status'), |
|
40 | 46 | url(r'^user-details/', views.get_user_details, name='get_user_details'), # |
41 | 47 | url(r'^get-booking-details/(?P<booking_id>\d+)/$', views.get_booking_details, name='get_booking_details'), # |
42 | 48 | url(r'^forward-booking-new/$', views.forward_booking_new, name='forward_booking_new'), |
| 49 | + url(r'^update-booking-new/$', views.update_booking_new, name='update_booking_new'), |
43 | 50 |
|
44 | 51 | url(r'^confirm-booking-new/$', views.confirm_booking_new, name='confirm_booking_new'), # |
45 | 52 |
|
46 | 53 | url(r'^inventory/$', views.get_inventory_items, name='get_inventory_items'), |
47 | | - url(r'^inventory/(?P<pk>\d+)/$', views.get_inventory_item, name='get_inventory_item'), |
| 54 | + # url(r'^inventory/(?P<pk>\d+)/$', views.get_inventory_item, name='get_inventory_item'), |
48 | 55 | url(r'^inventory-bills/$', views.get_inventory_bills, name='get_inventory_bills'), |
49 | 56 | url(r'^inventory-bills/(?P<pk>\d+)/$', views.get_inventory_bill, name='get_inventory_bill'), |
50 | 57 |
|
|
57 | 64 | url('api/inventory_list/', InventoryListView.as_view(), name='inventory-list'), |
58 | 65 | # completed bookings |
59 | 66 | url(r'^completed-bookings/', views.completed_bookings, name='completed_bookings'), |
| 67 | + url(r'^expire-pending-bookings/', views.expire_pending_bookings, name='expire_pending_bookings'), |
60 | 68 |
|
61 | 69 | ] |
62 | 70 |
|
0 commit comments