summaryrefslogtreecommitdiff
path: root/UI/Vendor
diff options
context:
space:
mode:
authoraurynn_cmd <aurynn_cmd@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-10 23:02:09 +0000
committeraurynn_cmd <aurynn_cmd@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-10 23:02:09 +0000
commit74afbb457aac6a1f6e2d4a2357768f710977a640 (patch)
treecc06c426397d05c5f1dc12eb40b0883f7d3b0854 /UI/Vendor
parent928290e80924da702b9041a30dd776ad34d24ba9 (diff)
Creation of next-gen admin.pl, admin.pm, and admin.sql systems.
Admin.pm defines the new controller admin.pl is the direct view-backing software. POD is not completed, will be provided shortly. Full UI templates provided for the Reconciliation, Vendor, Customer, and Employee as well. UI/ is being delineated by subdirectories for Admin, Vendor, Customer and Employee, to date. Minor whitespace cleanup. git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1557 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/Vendor')
-rw-r--r--UI/Vendor/vendor.html139
1 files changed, 139 insertions, 0 deletions
diff --git a/UI/Vendor/vendor.html b/UI/Vendor/vendor.html
new file mode 100644
index 00000000..c5753409
--- /dev/null
+++ b/UI/Vendor/vendor.html
@@ -0,0 +1,139 @@
+<div class="vendor">
+
+ <font size="17"><?lsmb vendor.name?></font>
+
+<form name="vendor">
+ <table>
+
+ <tr>
+ <td><b>Shipping Address</b></td>
+
+ <td><b>Billing Address (if different)</p></td>
+
+ </tr>
+
+ <hr/>
+
+ <?lsmb FOREACH entry = vendor.ordered ?>
+ <tr>
+ <td>
+ <label for="shipping_<?entry?>"><?entry?>:</label>
+ <input id="shipping_<?entry?>" type="textarea" name="shipping_<?entry?>" value="<? vendor.entry ?>">
+ </td>
+ <td>
+ <input type="textarea" name="billing_<? entry ?>" value="<? vendor.entry ?>">
+ </td>
+ </tr>
+ <?lsmb end ?>
+ <tr>
+ <td>
+ <label for="startdate">Starting Date:</label>
+ <input id="startdate" type="textarea" name="startdate" value="<? vendor.startdate ?>">
+ </td>
+ <td>
+ <label for="enddate">End date:</label>
+ <input id="enddate" type="textarea" name="startdate" value="<? vendor.enddate ?>">
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <label for"creditlimit">Credit Limit:</label>
+ <input id="creditlimit" name="creditlimit" type="textarea" value="<?vendor.creditlimit?>">
+ </td>
+ <td>
+ <label for="terms">Terms:</label>
+ <input id="terms" name="terms" type="textarea" value="<?vendor.terms?>"> days
+ </td>
+ <td>
+ <label for="discount">Discount %:</label>
+ <input id="discount" name="discount" type="textarea" value="<?vendor.discount?>">
+ </td>
+ </tr>
+ <tr>
+
+ <td>
+ <label for="taxnumber">Tax Number/SSN:</label>
+ <input id="taxnumber" name="taxnumber" type="textarea" value="<?vendor.taxnumber?>">
+ </td>
+ <td>
+ <label for"gifi_accno">Subcontract GFI:</label>
+ <input id="gifi_accno" name="gifi_accno" type="textarea" value="<?vendor.gifi_accno?>">
+ </td>
+ <td>
+ <label for"sic_code">SIC Code:</label>
+ <input id="sic_code" name="sic_code" type="textarea" value="<?vendor.sic_code?>">
+ </td>
+ </tr>
+
+ <tr>
+
+ <td></td>
+ <td>
+ <label for"bic">BIC:</label>
+ <input id="bic" name="bic" type="textarea" value="<?vendor.bic?>">
+ </td>
+ <td>
+ <label for="iban">IBAN:</label>
+ <input id="iban" name="iban" type="textarea" value="<?vendor.iban?>">
+ </td>
+ </tr>
+
+ <tr>
+ <td>
+ <label for="notes">Notes:</label><br/>
+ <textarea name="notes" rows="3" cols="40" id="notes">
+ <?vendor.notes?>
+ </textarea>
+ </td>
+ </tr>
+
+ <tr>
+ <hr/>
+ <br/>
+ <td>
+ <button class="submit" type="submit" name="action" value="save" accesskey="S" title="Save [Alt-S]">Save</button>
+ </td>
+ <td>
+ <button class="submit"
+ type="submit"
+ name="action"
+ value="ap_transaction"
+ accesskey="A"
+ title="AP Transaction [Alt-A]">AP Transaction</button>
+ </td>
+ <td>
+ <button class="submit"
+ type="submit"
+ name="action"
+ value="vendor_invoice"
+ accesskey="I"
+ title="Vendor Invoice [Alt-I]">Vendor Invoice</button>
+ </td>
+ <td>
+ <button class="submit"
+ type="submit"
+ name="action"
+ value="purchase_order"
+ accesskey="O"
+ title="Purchase Order [Alt-O]">Purchase Order</button>
+ </td>
+ <td>
+ <button class="submit"
+ type="submit"
+ name="action"
+ value="rfq"
+ accesskey="Q"
+ title="RFQ [Alt-Q]">RFQ</button>
+ </td>
+ <td>
+ <button class="submit"
+ type="submit"
+ name="action"
+ value="pricelist"
+ accesskey="P"
+ title="Pricelist [Alt-P]">Pricelist</button>
+ </td>
+ </tr>
+ </table>
+ </form>
+</div> \ No newline at end of file