Feat: Purchase View

This commit is contained in:
Rodia 2024-06-29 20:58:29 -05:00
parent 2039a19b16
commit 90217926df
3 changed files with 55 additions and 2 deletions

View File

@ -0,0 +1,43 @@
<!doctype html>
<form action="{% url 'buy'%}" method="POST">
{% csrf_token %}
<fieldset>
<legend>Purchase</legend>
<label for="customer">Customer</label>:
<input type="search" name="customer" id="customer"/>
<label for="date">Date</label>:
<input type="date" name="date" id="date"/>
<label for="description">Description</label>:
<input type="text" name="description" id="description"/>
<fieldset>
<legend>Purchase Line</legend>
<label for="product">Product</label>:
<input type="search" name="product" id="product"/>
<label for="unit_price">Unit Price</label>:
<input type="number" name="unit_price" min="0" id="unit_price"/>
<label for="quantity">Quantity</label>:
<input type="number" name="quantity" min="0" id="quantity"/>
<label for="subtotal">Subtotal</label>:
<input type="number" name="subtotal" min="0" id="line_amount"/>
</fieldset>
</fieldset>
<fieldset>
<label for="total_amount">Total</label>:
<input type="number" name="total_amount" min="0" id="total_amount"/>
<label for="Paid">Paid:</label>
<select id="paid" name="paid">
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</fieldset>
<div class="button-container">
<button name="form" type="submit">Enviar</button>
</div>
</form>

View File

@ -10,7 +10,13 @@ def index(request):
def buy(request):
return HttpResponse("Nombre: ....")
context = {}
if request.POST:
raise Exception(request.POST)
else:
raise Exception(request.POST)
return render(
request, 'don_confiao/purchase.html', context)
def purchases(request):
@ -36,4 +42,5 @@ def products(request):
"category": "Cafes"
},
]
return JsonResponse(products, safe=False)
return JsonResponse(
products, safe=False)

View File

@ -17,6 +17,9 @@ Including another URLconf
from django.contrib import admin
from django.urls import include, path
app_name = "don_confiao"
urlpatterns = [
path("don_confiao/", include("don_confiao.urls")),
path('admin/', admin.site.urls),