[ic] RE: standard demo admin UI entry page-"blank" error for PO and check methods

Kirk Goudy kirk at goudy.net
Wed Oct 19 01:36:25 EDT 2005


> From: Kirk Goudy [mailto:kirk at goudy.net] 
>
> Why does the STANDARD demo admin UI complain about blanks for 
> the payment method of purchase order and online check? 
> http://demo.icdevgroup.org/i/demo1/admin/entry.html
> 
>  po_number: blank
> 
It looks like line 1048 of dist/lib/UI/pages/admin/entry.html could be
changed. It fixes the admin entry and doesn't seem break the checkout page.
 FROM:
                <INPUT NAME=project_id VALUE="[value project_id]" SIZE=14>
 TO:
                <INPUT NAME=project_id VALUE="[value po_number]" SIZE=14>

The Standard and Foundation demo's both use the value po_number in their
order profiles.

> The online check also pretends the check_account and 
> check_routing are blank.
It looks like line 977-987 of dist/lib/UI/pages/admin/entry.html could be
changed.

 FROM:
                [error name=check_acct std_label="[L]Account Number[/L]"
required=1]
              </td>
              <td colspan="3 align="left" class="contentbar1">
                <b>
                <INPUT TYPE=text NAME=check_acct SIZE=22 value="[value
check_acct]">
                </b>
              </td>
            </tr>
            <tr>
              <td align="right" class="contentbar1">
                [error name=check_route std_label="[L]Routing Number[/L]"
required=1]
                
              </td>
              <td align="left" colspan="3" class="contentbar1">
                <b><INPUT TYPE=text NAME=check_route SIZE=22 value="[value
check_route]"></b>
 TO:
                [error name=check_account std_label="[L]Account Number[/L]"
required=1]
              </td>
              <td colspan="3 align="left" class="contentbar1">
                <b>
                <INPUT TYPE=text NAME=check_account SIZE=22 value="[value
check_account]">
                </b>
              </td>
            </tr>
            <tr>
              <td align="right" class="contentbar1">
                [error name=check_routing std_label="[L]Routing Number[/L]"
required=1]
                
              </td>
              <td align="left" colspan="3" class="contentbar1">
                <b><INPUT TYPE=text NAME=check_routing SIZE=22 value="[value
check_routing]"></b>
--
kirk at goudy.net




More information about the interchange-users mailing list