first commit
This commit is contained in:
BIN
Base/Urls/__pycache__/urlsBankAccount.cpython-312.pyc
Normal file
BIN
Base/Urls/__pycache__/urlsBankAccount.cpython-312.pyc
Normal file
Binary file not shown.
BIN
Base/Urls/__pycache__/urlsBase.cpython-312.pyc
Normal file
BIN
Base/Urls/__pycache__/urlsBase.cpython-312.pyc
Normal file
Binary file not shown.
BIN
Base/Urls/__pycache__/urlsChartOfAccount.cpython-312.pyc
Normal file
BIN
Base/Urls/__pycache__/urlsChartOfAccount.cpython-312.pyc
Normal file
Binary file not shown.
BIN
Base/Urls/__pycache__/urlsPaymentMethod.cpython-312.pyc
Normal file
BIN
Base/Urls/__pycache__/urlsPaymentMethod.cpython-312.pyc
Normal file
Binary file not shown.
BIN
Base/Urls/__pycache__/urlsProductList.cpython-312.pyc
Normal file
BIN
Base/Urls/__pycache__/urlsProductList.cpython-312.pyc
Normal file
Binary file not shown.
BIN
Base/Urls/__pycache__/urlsProfessional.cpython-312.pyc
Normal file
BIN
Base/Urls/__pycache__/urlsProfessional.cpython-312.pyc
Normal file
Binary file not shown.
BIN
Base/Urls/__pycache__/urlsServiceList.cpython-312.pyc
Normal file
BIN
Base/Urls/__pycache__/urlsServiceList.cpython-312.pyc
Normal file
Binary file not shown.
15
Base/Urls/urlsBankAccount.py
Normal file
15
Base/Urls/urlsBankAccount.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from django.urls import path
|
||||
# from django.contrib.auth import views as auth_views
|
||||
from Base.Views import (
|
||||
viewsBankAccounts ,
|
||||
)
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
# URLs de Bancos
|
||||
path('/', viewsBankAccounts.BankAccountsListView.as_view(), name='BankAccountsListView'),
|
||||
path('/Create', viewsBankAccounts.BankAccountsCreateView.as_view(), name='BankAccountsCreateView'),
|
||||
path('/<int:pk>/Detail', viewsBankAccounts.BankAccountsDetailView.as_view(), name='BankAccountsDetailView'),
|
||||
path('/<int:pk>/Update', viewsBankAccounts.BankAccountsUpdateView.as_view(), name='BankAccountsUpdateView'),
|
||||
path('/<int:pk>/Delete', viewsBankAccounts.BankAccountsDeleteView.as_view(), name='BankAccountsDeleteView'),
|
||||
]
|
||||
15
Base/Urls/urlsBase.py
Normal file
15
Base/Urls/urlsBase.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from django.urls import path
|
||||
from django.contrib.auth import views as auth_views
|
||||
from Base.Views import (
|
||||
views,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
# base das URLs
|
||||
path('', views.Home, name='Home'),
|
||||
path('login', views.Login.as_view(), name='login'),
|
||||
path('logout', auth_views.LogoutView.as_view(), name='logout'),
|
||||
path('dashboard', views.Dashboard.as_view(), name='Dashboard'),
|
||||
path('DashboardAdmin', views.DashboardAdmin.as_view(), name='DashboardAdmin'),
|
||||
|
||||
]
|
||||
13
Base/Urls/urlsChartOfAccount.py
Normal file
13
Base/Urls/urlsChartOfAccount.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from django.urls import path
|
||||
from Base.Views import (
|
||||
viewsChartOfAccount ,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
# URLs de Professional
|
||||
path('/', viewsChartOfAccount.ChartOfAccountListView.as_view(), name='ChartOfAccountListView'),
|
||||
path('/Create', viewsChartOfAccount.ChartOfAccountCreateView.as_view(), name='ChartOfAccountCreateView'),
|
||||
path('/<int:pk>/Detail', viewsChartOfAccount.ChartOfAccountDetailView.as_view(), name='ChartOfAccountDetailView'),
|
||||
path('/<int:pk>/Update', viewsChartOfAccount.ChartOfAccountUpdateView.as_view(), name='ChartOfAccountUpdateView'),
|
||||
path('/<int:pk>/Delete', viewsChartOfAccount.ChartOfAccountDeleteView.as_view(), name='ChartOfAccountDeleteView'),
|
||||
]
|
||||
14
Base/Urls/urlsPaymentMethod.py
Normal file
14
Base/Urls/urlsPaymentMethod.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.urls import path
|
||||
# from django.contrib.auth import views as auth_views
|
||||
from Base.Views import (
|
||||
viewsPayMethod ,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
# URLs de Professional
|
||||
path('/', viewsPayMethod.PayMethodListView.as_view(), name='PayMethodListView'),
|
||||
path('/Create', viewsPayMethod.PayMethodCreateView.as_view(), name='PayMethodCreateView'),
|
||||
path('/<int:pk>/Detail', viewsPayMethod.PayMethodDetailView.as_view(), name='PayMethodDetailView'),
|
||||
path('/<int:pk>/Update', viewsPayMethod.PayMethodUpdateView.as_view(), name='PayMethodUpdateView'),
|
||||
path('/<int:pk>/Delete', viewsPayMethod.PayMethodDeleteView.as_view(), name='PayMethodDeleteView'),
|
||||
]
|
||||
14
Base/Urls/urlsProductList.py
Normal file
14
Base/Urls/urlsProductList.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.urls import path
|
||||
# from django.contrib.auth import views as auth_views
|
||||
from Base.Views import (
|
||||
viewsProductList ,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
# URLs de Professional
|
||||
path('/', viewsProductList.ProductListListView.as_view(), name='ProductListListView'),
|
||||
path('/Create', viewsProductList.ProductListCreateView.as_view(), name='ProductListCreateView'),
|
||||
path('/<int:pk>/Detail', viewsProductList.ProductListDetailView.as_view(), name='ProductListDetailView'),
|
||||
path('/<int:pk>/Update', viewsProductList.ProductListUpdateView.as_view(), name='ProductListUpdateView'),
|
||||
path('/<int:pk>/Delete', viewsProductList.ProductListDeleteView.as_view(), name='ProductListDeleteView'),
|
||||
]
|
||||
14
Base/Urls/urlsProfessional.py
Normal file
14
Base/Urls/urlsProfessional.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.urls import path
|
||||
# from django.contrib.auth import views as auth_views
|
||||
from Base.Views import (
|
||||
viewsProfessional ,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
# URLs de Professional
|
||||
path('/', viewsProfessional.ProfessionalListView.as_view(), name='ProfessionalListView'),
|
||||
path('/Create', viewsProfessional.ProfessionalCreateView.as_view(), name='ProfessionalCreateView'),
|
||||
path('/<int:pk>/Detail', viewsProfessional.ProfessionalDetailView.as_view(), name='ProfessionalDetailView'),
|
||||
path('/<int:pk>/Update', viewsProfessional.ProfessionalUpdateView.as_view(), name='ProfessionalUpdateView'),
|
||||
path('/<int:pk>/Delete', viewsProfessional.ProfessionalDeleteView.as_view(), name='ProfessionalDeleteView'),
|
||||
]
|
||||
14
Base/Urls/urlsServiceList.py
Normal file
14
Base/Urls/urlsServiceList.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.urls import path
|
||||
# from django.contrib.auth import views as auth_views
|
||||
from Base.Views import (
|
||||
viewsServiceList ,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
# URLs de Professional
|
||||
path('/', viewsServiceList.ServiceListListView.as_view(), name='ServiceListListView'),
|
||||
path('/Create', viewsServiceList.ServiceListCreateView.as_view(), name='ServiceListCreateView'),
|
||||
path('/<int:pk>/Detail', viewsServiceList.ServiceListDetailView.as_view(), name='ServiceListDetailView'),
|
||||
path('/<int:pk>/Update', viewsServiceList.ServiceListUpdateView.as_view(), name='ServiceListUpdateView'),
|
||||
path('/<int:pk>/Delete', viewsServiceList.ServiceListDeleteView.as_view(), name='ServiceListDeleteView'),
|
||||
]
|
||||
Reference in New Issue
Block a user