2

我无法更改订单状态。请参阅图像上的问题。页面中没有“保存以创建订单发货”的按钮。

有问题的订单已经处于处理状态。

版本:1.6.2.0

问题 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时没有出现?

有任何想法吗?

4

0 回答 0