Index: openacs-4/packages/ecommerce/www/admin/customer-service/user-identification.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ecommerce/www/admin/customer-service/user-identification.adp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ecommerce/www/admin/customer-service/user-identification.adp 24 Aug 2008 23:46:51 -0000 1.1 @@ -0,0 +1,82 @@ + + @title;noquote@ + @context;noquote@ +

@title@

+ +

What we know about this user

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
First Name@first_names@
Last Name@last_name@
Email@email@
Postal Code@postal_code@ + + (@location@) + +
Other Identifying Info@other_id_info@
Record Created@record_created_html;noquote@
+ +

Customer Service Issues

+

Edit User Info

+ +
+@export_form_vars_html;noquote@ + + + + + + + + + + + + + + + + + +
First Name: Last Name:
Email Address:
Zip Code:
Other Identifying Info:
+ +
+ +
+
+ +

Try to match this user up with a registered user

+ +
+ @export_form_vars_html;noquote@ + + +
+ +
+
+

No matches found.

+
+
Index: openacs-4/packages/ecommerce/www/admin/customer-service/user-identification.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ecommerce/www/admin/customer-service/user-identification.tcl,v diff -u -r1.5 -r1.6 --- openacs-4/packages/ecommerce/www/admin/customer-service/user-identification.tcl 9 Mar 2004 00:59:47 -0000 1.5 +++ openacs-4/packages/ecommerce/www/admin/customer-service/user-identification.tcl 24 Aug 2008 23:46:51 -0000 1.6 @@ -1,5 +1,4 @@ # user-identification.tcl - ad_page_contract { @param user_identification_id @author @@ -9,175 +8,69 @@ } { user_identification_id } -# + ad_require_permission [ad_conn package_id] admin db_1row get_user_id_info "select * from ec_user_identification where user_identification_id=:user_identification_id" - if { ![empty_string_p $user_id] } { ad_returnredirect "[ec_acs_admin_url]users/one.tcl?user_id=$user_id" ad_script_abort } +set title "Unregistered User" +set context [list [list index "Customer Service"] $title] - -set page_title "Unregistered User" -append doc_body "[ad_admin_header $page_title] -

$page_title

- -[ad_context_bar [list "../index.tcl" "Ecommerce([ec_system_name])"] [list "index.tcl" "Customer Service Administration"] $page_title] - -
- -

What we know about this user

- - - - - - - - - - - - - - - - - - - - - - - - - - -
First Name$first_names
Last Name$last_name
Email$email
Zip Code$postal_code -" - set location [ec_location_based_on_zip_code $postal_code] -if { ![empty_string_p $location] } { - append doc_body " ($location)" -} -append doc_body "
Other Identifying Info$other_id_info
Record Created[util_AnsiDatetoPrettyDate $date_added]
+set record_created_html "[util_AnsiDatetoPrettyDate $date_added]" +set all_cs_issues_by_one_user_html "[ec_all_cs_issues_by_one_user "" $user_identification_id]" -

Customer Service Issues

+set export_form_vars_html [export_form_vars user_identification_id] -[ec_all_cs_issues_by_one_user "" $user_identification_id] - -

Edit User Info

- -
-[export_form_vars user_identification_id] - - - - - - - - - - - - - - - - - -
First Name: Last Name:
Email Address:
Zip Code:
Other Identifying Info:
- -
- -
-
- -

Try to match this user up with a registered user

- -[ad_admin_footer] -" - - -doc_return 200 text/html $doc_body