summaryrefslogtreecommitdiff
path: root/UI
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2008-09-12 22:57:58 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2008-09-12 22:57:58 +0000
commite6b2f50939b78d5f181070b3aedcd528f5393833 (patch)
tree6a5095dd448bad8d2ab1ee5969ac17443bb91f96 /UI
parentaeb8fa97fcadab8e48b014f66650dac8ac4d32c4 (diff)
Added description field to customer/vendor generation.
Corrected entity credit account autogenerated number sequences. git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2321 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI')
-rw-r--r--UI/Contact/contact.html18
1 files changed, 15 insertions, 3 deletions
diff --git a/UI/Contact/contact.html b/UI/Contact/contact.html
index c061ac52..2ccd5491 100644
--- a/UI/Contact/contact.html
+++ b/UI/Contact/contact.html
@@ -229,6 +229,7 @@ problems with multi-word single-quoted constructs in PI tags. -CT -->
<tr class="listheading">
<th class="account_class"><?lsmb text('Type') ?></th>
<th class="number"><?lsmb text("Number") ?></th>
+ <th class="description"><?lsmb text("Description") ?></th>
<th class="credit_limit"><?lsmb text('Credit Limit') ?></th>
<th class="start_date"><?lsmb text('Start Date') ?></th>
<th class="end_date"><?lsmb text('End Date') ?></th>
@@ -242,6 +243,7 @@ problems with multi-word single-quoted constructs in PI tags. -CT -->
<td><a href="<?lsmb script ?>?action=get&account_class=<?lsmb
account_class ?>&entity_id=<?lsmb entity_id
?>&meta_number=<?lsmb cl_item.meta_number ?>"><?lsmb cl_item.meta_number ?></a></td>
+ <td><?lsmb cl_item.description ?></td>
<td><?lsmb cl_item.credit_limit ?></td>
<td><?lsmb cl_item.start_date ?></td>
<td><?lsmb cl_item.end_date ?></td>
@@ -265,14 +267,24 @@ problems with multi-word single-quoted constructs in PI tags. -CT -->
name = "account_class"
value = account_class
} ?>
- <?lsmb PROCESS input element_data = {
+ <table>
+ <tr class="eca_row">
+ <td>
+ <?lsmb PROCESS input element_data = {
label = text("$entity_classname Number:"),
type= "text",
name = "meta_number",
value = meta_number,
size = "20"
- } # " ?><br/>
- <table>
+ } # " ?></td>
+ <td><?lsmb PROCESS input element_data = {
+ label = text("Description:"),
+ type= "text",
+ name = "description",
+ value = description,
+ size = "20"
+ } ?></td>
+ </tr>
<tr id="date-row">
<td>
<?lsmb PROCESS input element_data = {