Add menu entry for Pending Products

also move the entry for Pending Customers
This commit is contained in:
Lance Edgar 2021-11-10 12:40:38 -06:00
parent a3c4f0cc3a
commit d0521bfb57

View file

@ -49,11 +49,6 @@ def simple_menus(request):
'url': url('new_custorders'),
'perm': 'new_custorders.list',
},
{
'title': "Pending Customers",
'url': url('pending_customers'),
'perm': 'pending_customers.list',
},
{'type': 'sep'},
{
'title': "All Customer Orders",
@ -97,6 +92,12 @@ def simple_menus(request):
'url': url('people'),
'perm': 'people.list',
},
{'type': 'sep'},
{
'title': "Pending Customers",
'url': url('pending_customers'),
'perm': 'pending_customers.list',
},
],
}
@ -134,6 +135,12 @@ def simple_menus(request):
'url': url('uoms'),
'perm': 'uoms.list',
},
{'type': 'sep'},
{
'title': "Pending Products",
'url': url('pending_products'),
'perm': 'pending_products.list',
},
],
}