from django.contrib.auth import views as auth_views
from customer import  views, b2b_boys
from django.urls import path, include


urlpatterns = [

    
    path('b2b-customer/',views.customer),
    path('b2c-customer/',views.b2c_customer),

    path('customer_view/',views.customer_view),
    path('customer_add/',views.customer_add),
    path('customer_edit/',views.customer_edit),
    path('customer_update/',views.customer_update),
    path('customer_delete/',views.customer_delete),
    path('check_customer_phone/',views.check_customer_phone),
    path('customer-search/',views.customer_search),


    path('customer-list/', views.customer_list),
    path('customer_list_view/', views.customer_list_view),



    path('b2b-boys/',b2b_boys.b2b_boys),

    path('ajax_internal_wholesale/',b2b_boys.ajax_internal_wholesale),

    path('internal_wholesale_add/',b2b_boys.internal_wholesale_add),

    path('internal_wholesale_edit/',b2b_boys.internal_wholesale_edit),

    path('internal_wholesale_update/',b2b_boys.internal_wholesale_update),

    path('internal_wholesale_delete/',b2b_boys.internal_wholesale_delete),

    path('check_internal_wholesale_phone/',b2b_boys.check_internal_wholesale_phone),

    path('check_internal_wholesale_email/',b2b_boys.check_internal_wholesale_email),

    path('b2b_boys/employee/',b2b_boys.b2b_employee_addpage),

    path('b2b_employee_view/',b2b_boys.b2b_employee_view),

    path('b2b_employee_add/',b2b_boys.b2b_employee_add),

    path('b2b_employee_update/',b2b_boys.b2b_employee_update),

    path('check_b2b_employee_email/', b2b_boys.check_b2b_employee_email),
    
    path('check_b2b_employee_phone/', b2b_boys.check_b2b_employee_phone),



]
