我已使用Hwg属性管理器扩展(管理类别,客户和客户地址属性)向客户地址添加了自定义属性(以选择商业或住宅的地址类型)。它正在后端工作。但问题不在于前端。所以我已将此代码添加到
应用程序/设计/前端/碱/默认/模板/客户/地址/ edit.phtml
<li class="fields">
<label for="billing:addresstype" class="required"><em>*</em><?php echo $this->__('Address Type') ?></label>
<div class="input-box">
<select name="billingaddresstype" id="billingaddresstype">
<?php $collection = Mage::getResourceModel('eav/entity_attribute_option_collection');
$collection->setAttributeFilter(174);
$collection->setStoreFilter();
$collection->load();
$options = $collection->toOptionArray();
foreach ($options as $option) {
echo "<option value='".$option['value']."'>".$option['label']."</option>";
}
?>
</select><?php //var_dump($options); ?>
</div>
</li>
现在组合框出现在前端。但它不保存数据。然后我检查AddressController中的提交表单值
$addressForm = Mage::getModel('customer/form');
$addressForm->setFormCode('customer_address_edit')
->setEntity($address);
$addressData = $addressForm->extractData($this->getRequest());
var_dump($addressData);
break;
它不包含我的自定义属性值。
array(11) { ["firstname"]=> string(8) "thushara"
["lastname"]=> string(11) "Mannaperuma"
["company"]=> string(3) "flt"
["street"]=> array(2)
{ [0]=> string(17) "1234 Heartwood Dr" [1]=> string(0) "" }
["city"]=> string(10) "Beltsville"
["country_id"]=> string(2) "US"
["region"]=> string(0) ""
["region_id"]=> string(2) "31"
["postcode"]=> string(5) "20705"
["telephone"]=> string(12) "548-789-6548"
["fax"]=> string(0) "" }
我坚持到了这一点。
答案 0 :(得分:1)
我尝试了你的代码,但它打破了编辑页面
扩展适用于我1.9,我使用定制的rwd主题。
这就是我的工作方式。
我在我的主题文件夹中打开了这个文件: \ Magento的\应用\设计\前端\ RWD \默认\模板\顾客\地址\ edit.phtml
在您的情况下,代码将是:
<li class="field">
<label for="adtype" class="required">
<em>*</em>Adtype
</label>
<div class="input-box">
<input type="text" name="adtype" id="adtype" value="<?php echo $this->escapeHtml($this->getAddress()->getAdtype()) ?>" />
</div>
</li>
答案 1 :(得分:-1)
我解决了。
确保您拥有最新版本的Hwg属性管理器扩展。
您可以使用此链接direct-download-magento-extension将扩展名作为zip文件。
这是我用来获取前端的自定义属性的代码。它正确地保存了数据。
<li class="fields">
<?php
$attribute = Mage::getModel('eav/config')->getAttribute('customer_address','adtype');
?>
<label for="adtype" class="<?php if($attribute->getIsRequired() == true){?>required<?php } ?>"><?php if($attribute->getIsRequired() == true){?><em>*</em><?php } ?><?php echo $this->__('Address Type') ?></label>
<div class="input-box">
<select name="adtype" id="adtype" class="<?php if($attribute->getIsRequired() == true){?>required-entry<?php } ?>">
<?php
$options = $attribute->getSource()->getAllOptions();
foreach($options as $option){
?>
<option value='<?php echo $option['value']?>' <?php if($this->getCustomer()->getAdtype() == $option['value']){ echo 'selected="selected"';}?>><?php echo $this->__($option['label'])?></option>
<?php } ?>
</select>
</div>
</li>
adtype是我的属性代码。字段名称和标识必须是属性代码。