fixed bug not saving quantity for purchase
This commit is contained in:
@@ -1,88 +1,153 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="name">Product name</label>
|
||||
<input class="form-control" type="text" id="name" name="name" value="">
|
||||
<input
|
||||
class="form-control"
|
||||
type="text"
|
||||
id="name"
|
||||
name="name"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="productCode">Product code</label>
|
||||
<input class="form-control" type="text" id="productCode" name="productCode" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="quantity">Quantity</label>
|
||||
<input class="form-control" type="number" id="quantity" name="quantity" value="">
|
||||
<input
|
||||
class="form-control"
|
||||
type="text"
|
||||
id="productCode"
|
||||
name="productCode"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="quantity">Quantity</label>
|
||||
<input
|
||||
class="form-control"
|
||||
type="number"
|
||||
id="quantity"
|
||||
name="quantity"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="salesOrderNumber">Sales order number</label>
|
||||
<input class="form-control" type="text" id="salesOrderNumber" name="salesOrderNumber" value="">
|
||||
<input
|
||||
class="form-control"
|
||||
type="text"
|
||||
id="salesOrderNumber"
|
||||
name="salesOrderNumber"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="vendorName">Vendor</label>
|
||||
<input class="form-control" type="text" id="vendorName" name="vendorName" value="">
|
||||
<input
|
||||
class="form-control"
|
||||
type="text"
|
||||
id="vendorName"
|
||||
name="vendorName"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="purchaseDate">Purchased</label>
|
||||
<input class="form-control" type="date" id="purchaseDate" name="purchaseDate" value="">
|
||||
<input
|
||||
class="form-control"
|
||||
type="date"
|
||||
id="purchaseDate"
|
||||
name="purchaseDate"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="renewNoticeSent">
|
||||
<input class="form-check-input" type="checkbox" name="renewNoticeSent" id="renewNoticeSent">
|
||||
Renew notice sent</label>
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
name="renewNoticeSent"
|
||||
id="renewNoticeSent"
|
||||
/>
|
||||
Renew notice sent</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="expireDate">Subscription expire</label>
|
||||
<input class="form-control" type="date" id="expireDate" name="expireDate" value="">
|
||||
<input
|
||||
class="form-control"
|
||||
type="date"
|
||||
id="expireDate"
|
||||
name="expireDate"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="cancelDate">Cancel date</label>
|
||||
<input class="form-control" type="date" id="cancelDate" name="cancelDate" value="">
|
||||
<input
|
||||
class="form-control"
|
||||
type="date"
|
||||
id="cancelDate"
|
||||
name="cancelDate"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
{{!-- <div class="col-sm-6">
|
||||
{{! <div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="email">Email</label>
|
||||
<input class="form-control" type="text" id="email" name="email" value="">
|
||||
</div>
|
||||
</div> --}}
|
||||
</div> }}
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="couponCode">Coupon code</label>
|
||||
<input class="form-control" type="text" id="couponCode" name="couponCode" value="">
|
||||
<input
|
||||
class="form-control"
|
||||
type="text"
|
||||
id="couponCode"
|
||||
name="couponCode"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="notes">ShareIt Order</label>
|
||||
<textarea class="form-control" id="notes" name="notes" rows="10"/>
|
||||
<textarea
|
||||
class="form-control"
|
||||
id="notes"
|
||||
name="notes"
|
||||
rows="10"
|
||||
></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="app-frm-buttons mt-5">
|
||||
<button id="btn-save" class="btn btn-success">Save</button>
|
||||
<button id="btn-delete" class="btn btn-outline-dark">Delete</button>
|
||||
<button id="btn-renew" class="btn btn-outline-primary">Renew</button>
|
||||
<button
|
||||
id="btn-renew"
|
||||
class="btn btn-outline-primary"
|
||||
>Renew</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@@ -1,3 +1,3 @@
|
||||
<div>
|
||||
<div>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
@@ -1,5 +1,5 @@
|
||||
<div>
|
||||
<div class="alert alert-success mb-5" id="about"></div>
|
||||
<div class="alert mb-5" id="about"></div>
|
||||
|
||||
<form id="frm" method="post" action="index.html">
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<nav
|
||||
id="rf-nav"
|
||||
class="navbar fixed-top navbar-expand-lg navbar-dark"
|
||||
style="background-color: #6d00b6;"
|
||||
class="navbar fixed-top navbar-expand-lg navbar-light"
|
||||
style="background-color: #ff10f0;"
|
||||
>
|
||||
{{! navbar-dark bg-success }}
|
||||
<button
|
||||
@@ -67,12 +67,12 @@
|
||||
<a class="rfac nav-link mdi mdi-help" href="https://rfuser:mypasswordforrfuser2022@rockfish.ayanova.com/docs/index.html">Docs </a>
|
||||
</li>
|
||||
|
||||
<li id="rfops" class="nav-item">
|
||||
{{!-- <li id="rfops" class="nav-item">
|
||||
<a
|
||||
class="rfac nav-link mdi mdi-server-network"
|
||||
href="#!/ops"
|
||||
>Server Ops </a>
|
||||
</li>
|
||||
</li> --}}
|
||||
|
||||
<li id="rfsettings" class="nav-item">
|
||||
<a
|
||||
|
||||
Reference in New Issue
Block a user