diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-11-24 08:09:03 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-11-24 08:09:03 +0000 |
commit | 7c9b5fcafe0769499fc7fc3b9bea1365ed82d8d4 (patch) | |
tree | 3ef5e03596bed20fb10160a81ad40dc81f515094 /UI/Contact/contact.html | |
parent | 2a2154e7ebac202704a8971babbd6df9591aebed (diff) |
Moving Customer templates to be generally used by vendors, etc.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1898 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/Contact/contact.html')
-rw-r--r-- | UI/Contact/contact.html | 475 |
1 files changed, 475 insertions, 0 deletions
diff --git a/UI/Contact/contact.html b/UI/Contact/contact.html new file mode 100644 index 00000000..f2d14531 --- /dev/null +++ b/UI/Contact/contact.html @@ -0,0 +1,475 @@ +<?lsmb script_css = "Contact/contact.css" ?><?lsmb PROCESS 'ui-header.html' ?> +<?lsmb PROCESS 'elements.html' ?> +<body> + <?lsmb IF name ?> + <div class="pageheading"><?lsmb name?></font> + <?lsmb END ?> +<div class="navigation" id="nav_div"> +<?lsmb IF entity_id ?><?lsmb operation = "Edit" ?><?lsmb ELSE +?><?lsmb operation = "Add" +?><?lsmb END ?> +<!-- CT: Keys for localization scripts: +<?lsmb text("Add Customer") ?> +<?lsmb text("Edit Customer") ?> +<?lsmb text("Add Vendor") ?> +<?lsmb text("Edit Vendor") ?> +<?lsmb text("Add Employee") ?> +<?lsmb text("Edit Employee") ?> +--> +<ul class="navigation"> + <li><a href="#customer_div"><?lsmb text('Account') ?></a></li> + <?lsmb IF entity_id ?> + <li><a href="#location_div"><?lsmb text('Addresses') ?></a></li> + <li><a href="#contact_div"><?lsmb text('Contact Info') ?></a></li> + <li><a href="#bank_div"><?lsmb text('Bank Accounts') ?></a></li> + <!-- Commented out as not yet implemented -CT + <li><a href="#notes_div"><?lsmb text('Notes') ?></a></li> + <li><a href="#history_div"><?lsmb text('History') ?></a></li> + --> + <?lsmb END ?> +</ul> +</div> +<div class="container" id="customer_div"> +<?lsmb SWITCH entity_class + ?><?lsmb CASE 1 ?><?lsmb entity_classname = "Vendor" + ?><?lsmb CASE 2 ?><?lsmb entity_classname = "Customer" + ?><?lsmb CASE 3 ?><?lsmb entity_classname = "Employee" +?><?lsmb END ?> +<div class="listtop"><strong><?lsmb text("$operation $entity_classname") ?></strong></div> +<?lsmb FOREACH n = notes ?> +<div class="entity_note"><?lsmb n.note ?></div> +<?lsmb END ?> +<form name="customer" method="POST" action="<?lsmb script ?>"> + <?lsmb PROCESS input element_data = { + type = "hidden" + name = "entity_id" + value = entity_id + } ?> + <?lsmb PROCESS input element_data = { + label = text('Name:'), + type= "text", + name = "name", + value = name, + size = "20" + } ?><br/> + <?lsmb PROCESS input element_data = { + label = text('Account Number:'), + type= "text", + name = "meta_number", + value = meta_number, + size = "20" + } ?><br/> + <table> + <!-- TODO: Create another tab for order history, and another one + for notes --> + <tr> + <td> + <?lsmb PROCESS input element_data = { + label = text('Starting Date:'), + name = "startdate", + class = "date", + value = startdate, + type = "text", + size = "12", + maxlength = "10" + } ?> + </td> + <td> + <?lsmb PROCESS input element_data = { + label = text('End Date:'), + name = "enddate", + class = "date", + value = enddate, + type = "text", + size = "12", + maxlength = "10" + } ?> + </td> + </tr> + <tr> + <td> + <?lsmb PROCESS input element_data = { + label = text('Credit Limit:'), + name = "creditlimit", + value = creditlimit, + type = "text", + size = "20" + } ?> + </td> + <td> + <?lsmb PROCESS input element_data = { + label = text('Terms:'), + name = "terms", + value = terms, + type = "text", + size = "5" + } ?> <?lsmb text('days') ?> + </td> + </tr> + <tr> + + <td> + <?lsmb PROCESS input element_data = { + label = text('Tax Number/SSN:'), + name = "taxnumber", + value = taxnumber, + type = "text", + size = "19" + } ?> + </td> + <td> + <?lsmb PROCESS input element_data = { + label = text('Subcontract GIFI:'), + name = "gifi_accno", + value = gifi_accno, + type = "text", + size = "19" + } ?> + </td> + </tr> + <tr> + <td> + <?lsmb PROCESS input element_data = { + label = text('Discount:'), + name = "discount", + value = discount, + type = "text", + size = "3", + maxlength = 3 + } ?>% / + <?lsmb PROCESS input element_data = { + name = "discount_terms", + value = discount_terms, + type = "text", + size = "3", + maxlength = 3 + } ?> <?lsmb text('days') ?> + </td> + <td> + <?lsmb PROCESS input element_data = { + label = text('SIC:'), + name = "sic_code", + value = sic_code, + type = "text", + size = "19", + class = 'sic' + } ?> + </td> + </tr> + <tr> + + <tr> + <td> + <!-- TODO: Move to elements.html framework. -CT --> + <label for="notes"><?lsmb text('Notes:') ?></label><br/> + + <textarea name="notes" rows="3" cols="40" id="notes"></textarea> + </td> + </tr> + </table> + + <hr/> + <?lsmb PROCESS button element_data = { + text = text('Save'), + class="submit" + type="submit" + name="action" + value="save" + accesskey="S" + title="Save [Alt-S]" + } ?> + <?lsmb PROCESS button element_data = { + class="submit" + type="submit" + name="action" + value="ap_transaction" + accesskey="A" + title="AP Transaction [Alt-A]" + text = text('AP Transaction') + } ?> + <?lsmb PROCESS button element_data = { + class="submit" + type="submit" + name="action" + value="customer_invoice" + accesskey="I" + title="customer Invoice [Alt-I]" + text = text('Customer Invoice') + } ?> + <?lsmb PROCESS button element_data = { + class="submit" + type="submit" + name="action" + value="purchase_order" + accesskey="O" + title="Purchase Order [Alt-O]" + text = text('Purchase Order') + } ?> + <?lsmb PROCESS button element_data = { + class="submit" + type="submit" + name="action" + value="rfq" + accesskey="Q" + title="RFQ [Alt-Q]" + text = text('RFQ') + } ?> + <?lsmb PROCESS button element_data = { + class="submit" + type="submit" + name="action" + value="pricelist" + accesskey="P" + title="Pricelist [Alt-P]" + text = text('Pricelist') + } ?> + </form> +</div> +<?lsmb IF entity_id ?> +<div id="location_div" class="container"> + <div class="listtop"><?lsmb text('Locations') ?></div> + <!-- This entire form should probably be optionaly automated with AJAX + in oder to prevent user confusion --> + <form id="location_form" action="<?lsmb script ?>"> + <?lsmb PROCESS input element_data = { + type="hidden" + name="entity_id" + value=entity_id + } ?> + <?lsmb PROCESS input element_data = { + type="hidden" + name="location_id" + value=location_id + } ?> + <table width="100%"> + <tr class="listheading"> + <th class="type"><?lsmb text('Type') ?></th> + <th class="line_one"><?lsmb text('Address1') ?></th> + <th class="city"><?lsmb text('City') ?></th> + <th class="state"><?lsmb text('State/Province') ?></th> + <th class="mail_code"><?lsmb text('ZIP/Post Code') ?></th> + <th class="country"><?lsmb text('Country') ?></th> + <th class="actions"><?lsmb text('Actions') ?></th> + </tr> + <?lsmb FOREACH loc = locations ?> + <tr> + <td class="type"><?lsmb loc.class ?></td> + <td class="line_one"><?lsmb loc.line_one ?></td> + <td class="city"><?lsmb loc.city ?></td> + <td class="state"><?lsmb loc.state ?></td> + <td class="mail_code"><?lsmb loc.mail_code ?></td> + <td class="country"><?lsmb loc.country ?></td> + <td class="actions"> + <!-- TODO: Automate links with AJAX --> + <a href="<?lsmb script ?>?action=edit&entity_id=<?lsmb id + ?>&location_id=<?lsmb loc.id ?>">[edit]</a> + <a href="<?lsmb script ?>?action=delete_location&entity_id=<?lsmb + id ?>&location_id=<?lmb loc.id ?>">[delete]</a> + </td> + </tr> + <?lsmb END ?> + </table> + <div> <!-- TODO: Move to elements.html -CT --> + <label for="loc_type"><?lsmb text('Type:') ?></label> + <select id='loc_type' name="location_class"> + <?lsmb FOREACH lc = location_class_list ?> + <option value="<?lsmb lc.id ?>"><?lsmb lc.class ?></option> + <?lsmb END ?> + </select> + </div> + <div> + <?lsmb PROCESS input element_data = { + label = text('Address:'), + name = "line_one", + value = line_one, + type = "text", + size = "20" + } ?> + </div> + <div> + <?lsmb PROCESS input element_data = { + name = "line_two", + value = line_two, + type = "text", + size = "20" + } ?> + </div> + <div> + <?lsmb PROCESS input element_data = { + name = "line_three", + value = line_three, + type = "text", + size = "20" + } ?> + </div> + <div> + <?lsmb PROCESS input element_data = { + label = text('City:'), + name = "city", + value = city, + type = "text", + size = "20" + } ?> + </div> + <div> + <?lsmb PROCESS input element_data = { + label = text('State/Province:'), + name = "state", + value = state, + type = "text", + size = "20" + } ?> + </div> + <div> + <?lsmb PROCESS input element_data = { + label = text('Zip/Post Code:'), + name = "mail_code", + value = mail_code, + type = "text", + size = "20" + } ?> + </div> + <div> <!-- TODO: Move to elements.html -CT --> + <label for="country"><?lsmb text('Country:') ?></label> + <select name="country" id="country"> + <?lsmb FOREACH c = country_list ?> + <option value="<?lsmb c.id ?>"><?lsmb c.name ?></option> + <?lsmb END ?> + </select> + </div> + <div><?lsmb PROCESS button element_data = { + class = "submit" + name = "action" + value = "add_location" + id = "loc_save_location" + text = text('Save Location') + } ?> + </div> + </form> +</div> +<div class="container" id="contact_div"> + <div class="listtop"><?lsmb text('Contact Information') ?></div> + <table width="100%"> + <tr class="listheading"> + <th class="contact_class"><?lsmb text('Type:') ?></th> + <th class="contact"><?lsmb text('Contact Info:') ?></th> + <th class="contact_actions"><?lsmb text('Actions:') ?></th> + </tr> + <?lsmb FOREACH ct = contacts ?> + <tr> + <td class="contact_class"><?lsmb ct.class ?></td> + <td class="contact"><?lsmb ct.contact ?></td> + <td class="contact_actions"> + <a href="<?lsmb script ?>?entity_id=<?lsmb entity_id + ?>&contact_id=<?lsmb ct.id + ?>&action=edit_contact" + >[<?lsmb text('Edit'); ?>]</a> + <a href="<?lsmb script ?>?entity_id=<?lsmb entity_id + ?>&contact_id=<?lsmb ct.id + ?>&action=delete_contact" + >[<?lsmb text('Delete'); ?>]</a> + </td> + </tr> + <?lsmb END ?> + </table> + <form action="<?lsmb script ?>"> + <?lsmb PROCESS input element_data = { + type="hidden" + name="entity_id" + value=entity_id + } ?> + <?lsmb PROCESS input element_data = { + type="hidden" + name="contact_id" + value=contact_id + } ?> + <div><label for="contact_type"><?lsmb text('Type:') ?></label> + <select name="contact_class" id="contact_type"> + <?lsmb FOREACH cc = contact_class_list ?> + <option value="<?lsmb cc.id ?>"><?lsmb cc.class ?></option> + <?lsmb END ?> + </select> + <!-- TODO: Move the above select list to elements.html -CT --> + </div> + <div> + <?lsmb PROCESS input element_data = { + label = text('Contact Info:'), + name = "contact" + value = contact + type = "text" + size = "20" + } ?> + </div> + <div><?lsmb PROCESS button element_data = { + name = "action", + value = "save_contact", + text = text('Save Contact'), + class = "submit" + } ?> + </div> +</form> + +</div> +<div class="container" id="bank_div"> +<div class="listtop"><?lsmb text('Bank Accounts') ?></div> +<table width="100%"> +<tr class="listheading"> + <th class="bic"><?lsmb text('BIC/SWIFT Code') ?></th> + <th class="iban"><?lsmb text('Account Number') ?></th> + <th class="actions"><?lsmb text('Actions') ?></th> +</tr> +<?lsmb FOREACH ba = bank_account ?> +<tr> + <td class="bic"><?lsmb ba.bic ?></td> + <td class="iban"><?lsmb ba.iban ?></td> + <td class="actions"> + <a href="<?lsmb script ?>?action=edit_bank_acct&entity_id=<?lsmb + entity_id ?>&bank_account_id=<?lsmb ba.id ?>" + >[Edit]</a> + <a href="<?lsmb script ?>?action=delete_bank_acct&entity_id=<?lsmb + entity_id ?>&bank_account_id=<?lsmb ba.id ?>" + >[Delete]</a> + </td> +</tr> +<?lsmb END ?> +</table> +<form name="bank_acct" action="<?lsmb script ?>"> + <?lsmb PROCESS input element_data = { + type="hidden" + name="entity_id" + value=entity_id + } ?> + <?lsmb PROCESS input element_data = { + type="hidden" + name="bank_account_id" + value=bank_account_id + } ?> + <div><label for="bic"> + <?lsmb PROCESS input element_data = { + type="text" + label = text('BIC/SWIFT Code:') + name="bic" + value=bic + size=20 + } ?> + </div> + <div><label for="iban"> + <?lsmb PROCESS input element_data = { + type="text" + label = text('Bank Account:') + name="iban" + value=iban + size=20 + } ?> + </div> + <div><?lsmb PROCESS button element_data = { + name="action" + value="save_bank_account" + class="submit" + text = text('Save') + } ?> + </div> +</div> +<?lsmb END ?> +</body> +</html> |