83 lines
2.1 KiB
HTML
83 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Update Product | Vanikam</title>
|
|
</head>
|
|
<body>
|
|
|
|
<form action="/inventory/product/update" method="post">
|
|
|
|
<label for="category_uuid"> <!-- NOTE: when user selects category name, replace with category ID -->
|
|
Category name
|
|
<input type="text" name="category_uuid" id="category_uuid" required>
|
|
</label>
|
|
|
|
|
|
<label for="name">
|
|
Product name
|
|
<input type="text" name="name" id="name" required>
|
|
</label>
|
|
|
|
<label for="description">
|
|
Description
|
|
<input type="text" name="description" id="description">
|
|
</label>
|
|
|
|
<!--
|
|
<label for="description">
|
|
Image
|
|
<input type="file" name="description" id="description">
|
|
</label> -->
|
|
|
|
<label for="sku_able">
|
|
SKU-able
|
|
<input type="button" name="sku_able" id="sku_able">
|
|
</label>
|
|
|
|
<!-- quantity -->
|
|
|
|
<label for="quantity_minor_unit">
|
|
Quantity minor unit
|
|
<input type="text" name="quantity_minor_unit" id="quantity_minor_unit">
|
|
</label>
|
|
|
|
<label for="quantity_minor_number">
|
|
Quantity minor number
|
|
<input type="number" name="quantity_minor_number" id="quantity_minor_number">
|
|
</label>
|
|
|
|
<label for="quantity_major_unit">
|
|
Quantity major unit
|
|
<input type="text" name="quantity_major_unit" id="quantity_major_unit">
|
|
</label>
|
|
|
|
<label for="quantity_major_number">
|
|
Quantity major number
|
|
<input type="number" name="quantity_major_number" id="quantity_major_number">
|
|
</label>
|
|
|
|
|
|
<!-- price -->
|
|
|
|
<label for="price_unit">
|
|
Price unit
|
|
<input type="text" name="price_unit" id="price_unit">
|
|
</label>
|
|
|
|
<label for="price_minor_number">
|
|
Price minor number
|
|
<input type="number" name="price_minor_number" id="price_minor_number">
|
|
</label>
|
|
|
|
<label for="price_major_number">
|
|
Price major number
|
|
<input type="number" name="price_major_number" id="price_major_number">
|
|
</label>
|
|
|
|
<button type="submit">Update Product</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|