我无法改变我的订单状态。查看图像上的问题。 按钮保存以创建订单货件,不在页面中。
有问题的订单已经处于状态处理状态。
版本:1.6.2.0
Problem http://img17.imageshack.us/img17/5984/nosavebuttonshipping.jpg
我在app / design / adminhtml / default / default / template / sales / order / shipment / create / items.phtml中注释代码后恢复按钮
<div class="order-totals-bottom">
<?php //if ($this->canCreateShippingLabel()): ?>
<p>
<label class="normal" for="create_shipping_label"><?php echo Mage::helper('sales')->__('Create Shipping Label') ?></label>
<input id="create_shipping_label" name="shipment[create_shipping_label]" value="1" type="checkbox" onclick="toggleCreateLabelCheckbox();" />
</p>
<?php //endif; ?>
<p>
<label class="normal" for="notify_customer"><?php echo Mage::helper('sales')->__('Append Comments') ?></label>
<input id="notify_customer" name="shipment[comment_customer_notify]" value="1" type="checkbox" />
</p>
<?php if ($this->canSendShipmentEmail()): ?>
<p>
<label class="normal" for="send_email"><?php echo Mage::helper('sales')->__('Email Copy of Shipment') ?></label>
<input id="send_email" name="shipment[send_email]" value="1" type="checkbox" />
</p>
<?php endif; ?>
<div class="a-right">
<?php echo $this->getChildHtml('submit_button') ?>
</div>
</div>
但是,当$this->canCreateShippingLabel()
为NULL时,为什么没有出现其他两个选项(发货和附加评论的电子邮件副本)?
任何想法?