diff --git a/app/Views/invoice_form.php b/app/Views/invoice_form.php index b1172eef..a3bdebe1 100644 --- a/app/Views/invoice_form.php +++ b/app/Views/invoice_form.php @@ -1,22 +1,55 @@ +/* For Webkit (Chrome, Safari, Opera) */ +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* For Firefox */ +input[type=number] { + -moz-appearance: textfield; +} +
| Item Details | -Qty | -Rate | - -Amount | -Discount | -- | + | QUANTITY | +RATE | + +AMOUNT | +DISCOUNT | +||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| - | " name="quantity[]" oninput="calculateInvoice(this,= $inx; ?>)" value="= isset($ii_details['quantity']) ? $ii_details['quantity'] : '' ?>" min="1" /> | " name="rate[]" oninput="calculateInvoice(this,= $inx; ?>)" value="= isset($ii_details['unit_price']) ? $ii_details['unit_price'] : '' ?>" /> | -" name="amount[]" value="= isset($ii_details['subtotal']) ? $ii_details['subtotal'] : '' ?>" readonly /> | -" name="discount_amount[]" oninput="calculateInvoice(this,= $inx; ?>)" value="= isset($ii_details['discount_amount']) ? $ii_details['discount_amount'] : '' ?>" min="0" step="0.001" /> - - | -
- | |||||||
|
- |
- + | - | - + |
+
+
+
|
-
- |
- + - |
- |
+ |
@@ -239,21 +279,23 @@
||||