Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Customer ID Search Results
-
- Name:
- #customer.billing.firstname# #customer.billing.lastname#
- <cfif structKeyExists(customer.billing,"emailaddress")>
- Email Address:
- #customer.billing.emailaddress#
- </cfif>
-
- <!--- BILLING INFO --->
- <!--- BILLING INFO --->
- Billing Info
- First Name:
- <input name="firstname" id="firstname" value="#customer.billing.firstname#" />*
- Last Name:
- <input name="lastname" id="lastname" value="#customer.billing.lastname#" />*
- Email Address:
- <input name="emailaddress" id="emailaddress" value="#structKeyExists(customer.billing,"emailaddress")?customer.billing.emailaddress:""#" />
- Company:
- <input name="companyName" id="companyName" value="#customer.billing.company#" />
- Attention:
- <input name="attention" id="attention" value="#customer.billing.attention#" />
- Phone Number:
- <input name="mainTelephone" id="mainTelephone" value="#customer.billing.phonenumber#" />*
- Ext:
- <input name="mainPhoneExtension" id="mainPhoneExtension" value="#customer.billing.extension#" />
- Fax:
- <input name="fax" id="fax" value="#customer.billing.faxphonenumber#" />
- Street Address 1:
- <input name="address1" id="address1" value="#customer.billing.streetaddress1#" />*
- Street Address 2:
- <input name="address2" id="address2" value="#customer.billing.streetaddress2#" />
- City:
- <input name="city" id="city" value="#customer.billing.city#" />*
- State:
- <input name="state" id="state" value="#customer.billing.provincestate#" />*
- Zip:
- <input name="postalcode" id="postalcode" value="#customer.billing.postalcode#" />*
- Country:
- <select name="countryID" id="countryID">
- <option value="" #(toString(customer.billing.countryid).length())?"selected":""#>Select a Country</option><cfloop query="countries">
- <option value="#countryID#" #(countryID EQ customer.billing.countryid)?"selected":""#>#name#</option>
- </cfloop>
- </select>*
- Email marketing opt in/out:
- <cfif structKeyExists(customer.billing,"sendMarketingEmailFlg")>
- <input type="radio" name="sendMarketingEmailFlg" id="mkgtFlagNo" value="0" #(customer.billing.sendMarketingEmailFlg GT 0)?' ':'checked '#/> No
- <input type="radio" name="sendMarketingEmailFlg" id="mkgtFlagYes" value="1" #(customer.billing.sendMarketingEmailFlg GT 0)?'checked ':' '#/> Yes
- <cfelse>
- <input type="radio" name="sendMarketingEmailFlg" id="mkgtFlagNo" value="0" checked /> No
- <input type="radio" name="sendMarketingEmailFlg" id="mkgtFlagYes" value="1" /> Yes
- </cfif>
-
- <!--- SHIPPING INFO --->
- <!--- SHIPPING INFO --->
- Shipping Info
-
- Street Address 1:
- <input name="sh.address1" id="shipAddress1" value="#customer.shipping.recordCount GT 0?customer.shipping.streetaddress1:''#" />*
- Street Address 2:
- <input name="sh.address2" id="shipAddress2" value="#customer.shipping.recordCount GT 0?customer.shipping.streetaddress2:''#" />
- City:
- <input name="sh.city" id="shipCity" value="#customer.shipping.recordCount GT 0?customer.shipping.city:''#" />*
- State:
- <input name="sh.state" id="shipState" value="#customer.shipping.recordCount GT 0?customer.shipping.provincestate:''#" />*
- Zip:
- <input name="sh.postalcode" id="shipPostalcode" value="#customer.shipping.recordCount GT 0?customer.shipping.postalcode:''#" />*
- Country:
- <select name="sh.countryID" id="shipCountryID">
- <option value="" #(toString(customer.shipping.countryid).length())?"selected":""#>Select a Country</option><cfloop query="countries">
- <option value="#countryID#" #(countryID EQ customer.shipping.countryid)?"selected":""#>#name#</option>
- </cfloop>
- </select>*
- <input type="hidden" name="action" id="" value="saveCustAddressInfo" />
- <input type="hidden" name="encryptedID" id="" value="#encryptedID#" />
- <input type="submit" name="submit" id="" id="submit" value="Submit" />
Add Comment
Please, Sign In to add comment