Magento 没有按钮保存以创建订单装运

Magento 没有按钮保存以创建订单装运,magento,adminhtml,Magento,Adminhtml,我无法更改订单的状态。查看图像上的问题。 页面中没有用于创建订单发货的“保存”按钮 相关订单已处于处理状态 版本:1.6.2.0 我在app/design/adminhtml/default/default/template/sales/order/shipping/create/items.phtml中注释代码后恢复按钮 <div class="order-totals-bottom"> <?php //if ($this->canCreateShipp

我无法更改订单的状态。查看图像上的问题。 页面中没有用于创建订单发货的“保存”按钮

相关订单已处于处理状态

版本:1.6.2.0

我在app/design/adminhtml/default/default/template/sales/order/shipping/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()
为空时,为什么其他两个选项(发货的电子邮件副本和附加注释)不出现


有什么想法吗?

如果
$this->canSendShipmentEmail()
为空,那么当然if条件将计算为false,并且其中的内容将不会显示。抱歉:canCreateShippingLabel