Exemplo n.º 1
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     // ---------------------------------------
     $listing = Mage::helper('M2ePro/Component_Ebay')->getCachedObject('Listing', $this->getRequest()->getParam('listing_id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // ---------------------------------------
     // ---------------------------------------
     $url = $this->getUrl('*/adminhtml_ebay_listing/view', array('id' => $this->getRequest()->getParam('listing_id')));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('Go To The Listing'), 'onclick' => 'setLocation(\'' . $url . '\');'));
     $this->setChild('review', $buttonBlock);
     // ---------------------------------------
     // ---------------------------------------
     $addedProductsIds = Mage::helper('M2ePro/Data_Session')->getValue('added_products_ids');
     $url = $this->getUrl('*/adminhtml_ebay_listing/previewItems', array('currentProductId' => $addedProductsIds[0], 'productIds' => implode(',', $addedProductsIds)));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('Preview Added Products Now'), 'onclick' => 'window.open(\'' . $url . '\').focus();', 'class' => 'go'));
     $this->setChild('preview', $buttonBlock);
     // ---------------------------------------
     // ---------------------------------------
     $url = $this->getUrl('*/adminhtml_ebay_listing/view', array('id' => $this->getRequest()->getParam('listing_id'), 'do_list' => true));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('List Added Products Now'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'save'));
     $this->getRequest()->getParam('disable_list', false) && $buttonBlock->setData('style', 'display: none');
     $this->setChild('save_and_list', $buttonBlock);
     // ---------------------------------------
 }
Exemplo n.º 2
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     // ---------------------------------------
     $listing = Mage::helper('M2ePro/Component_Ebay')->getCachedObject('Listing', $this->getRequest()->getParam('listing_id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // ---------------------------------------
     // ---------------------------------------
     $listingData = Mage::helper('M2ePro/Data_Global')->getValue('temp_data');
     $categoryMode = $this->getData('category_mode');
     $categoryValue = $this->getData('category_value');
     $internalData = $this->getData('internal_data');
     $specifics = $this->getData('specifics');
     $specificBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_listing_category_specific');
     $specificBlock->setMarketplaceId($listingData['marketplace_id']);
     $specificBlock->setCategoryMode($categoryMode);
     $specificBlock->setCategoryValue($categoryValue);
     if (!empty($internalData)) {
         $specificBlock->setInternalData($internalData);
     }
     if (!empty($specifics)) {
         $specificBlock->setSelectedSpecifics($specifics);
     }
     $this->setChild('category_specific', $specificBlock);
     // ---------------------------------------
     // ---------------------------------------
     if ($categoryMode == Ess_M2ePro_Model_Ebay_Template_Category::CATEGORY_MODE_EBAY) {
         $this->_selectedCategoryPath = Mage::helper('M2ePro/Component_Ebay_Category_Ebay')->getPath($categoryValue, $listingData['marketplace_id']);
     } else {
         $attributeLabel = Mage::helper('M2ePro/Magento_Attribute')->getAttributeLabel($categoryValue);
         $this->_selectedCategoryPath = Mage::helper('M2ePro')->__('Magento Attribute') . ' > ' . $attributeLabel;
     }
     // ---------------------------------------
 }
Exemplo n.º 3
0
 protected function _beforeToHtml()
 {
     //------------------------------
     $this->setChild('product_mapping_grid', $this->getLayout()->createBlock('M2ePro/adminhtml_order_item_product_mapping_grid'));
     //------------------------------
     parent::_beforeToHtml();
 }
Exemplo n.º 4
0
 protected function _beforeToHtml()
 {
     // Magento order data
     // ---------------
     $this->realMagentoOrderId = NULL;
     $magentoOrder = $this->order->getMagentoOrder();
     if (!is_null($magentoOrder)) {
         $this->realMagentoOrderId = $magentoOrder->getRealOrderId();
     }
     // ---------------
     // ---------------
     if (!is_null($magentoOrder) && $magentoOrder->hasShipments()) {
         $url = $this->getUrl('*/adminhtml_order/resubmitShippingInfo', array('id' => $this->order->getId()));
         $data = array('class' => '', 'label' => Mage::helper('M2ePro')->__('Resend Shipping Information'), 'onclick' => 'setLocation(\'' . $url . '\');');
         $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
         $this->setChild('resubmit_shipping_info', $buttonBlock);
     }
     // ---------------
     // Shipping data
     // ---------------
     /** @var $shippingAddress Ess_M2ePro_Model_Amazon_Order_ShippingAddress */
     $shippingAddress = $this->order->getShippingAddress();
     $this->shippingAddress = $shippingAddress->getData();
     $this->shippingAddress['country_name'] = $shippingAddress->getCountryName();
     // ---------------
     $this->setChild('item', $this->getLayout()->createBlock('M2ePro/adminhtml_common_amazon_order_view_item'));
     $this->setChild('item_edit', $this->getLayout()->createBlock('M2ePro/adminhtml_order_item_edit'));
     $this->setChild('log', $this->getLayout()->createBlock('M2ePro/adminhtml_order_view_log_grid'));
     return parent::_beforeToHtml();
 }
Exemplo n.º 5
0
 protected function _beforeToHtml()
 {
     if (is_null($this->motorsType)) {
         throw new Ess_M2ePro_Model_Exception_Logic('Compatibility type was not set.');
     }
     //------------------------------
     /** @var Ess_M2ePro_Block_Adminhtml_Ebay_Motor_Add_Tabs $tabsBlock */
     $tabsBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_motor_add_tabs');
     $tabsBlock->setMotorsType($this->getMotorsType());
     $this->setChild('motor_add_tabs', $tabsBlock);
     //------------------------------
     //------------------------------
     $data = array('style' => 'float: right;', 'label' => Mage::helper('M2ePro')->__('Confirm'), 'onclick' => 'EbayMotorsHandlerObj.closeInstruction();');
     $confirmBtn = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('motor_confirm_btn', $confirmBtn);
     //------------------------------
     //------------------------------
     $data = array('style' => 'margin-right: 5px', 'label' => Mage::helper('M2ePro')->__('Add'), 'onclick' => 'EbayMotorsHandlerObj.updateMotorsData(0);');
     $closeBtn = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('motor_add_btn', $closeBtn);
     //------------------------------
     //------------------------------
     $data = array('label' => Mage::helper('M2ePro')->__('Override'), 'onclick' => 'EbayMotorsHandlerObj.updateMotorsData(1);');
     $closeBtn = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('motor_override_btn', $closeBtn);
     //------------------------------
     //------------------------------
     $data = array('style' => 'float: right;', 'label' => Mage::helper('M2ePro')->__('Close'), 'onclick' => 'Windows.getFocusedWindow().close();');
     $closeBtn = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('motor_close_btn', $closeBtn);
     //------------------------------
     return parent::_beforeToHtml();
 }
    protected function _toHtml()
    {
        $javascript = <<<JAVASCIRPT

<script type="text/javascript">

    Event.observe(window, 'load', function() {
        CommonHandlerObj = new CommonHandler();
    });

</script>

JAVASCIRPT;
        $tabsBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_common_template_tabs');
        $hideChannels = '';
        $tabsIds = $tabsBlock->getTabsIds();
        if (count($tabsIds) <= 1) {
            $hideChannels = ' style="visibility: hidden"';
        }
        return $javascript . $this->getAddButtonJavascript() . parent::_toHtml() . <<<HTML
<div class="content-header">
    <table cellspacing="0">
        <tr>
            <td{$hideChannels}>{$tabsBlock->toHtml()}</td>
            <td class="form-buttons">{$this->getButtonsHtml()}</td>
        </tr>
    </table>
</div>
<div id="template_tabs_container"></div>
HTML;
    }
Exemplo n.º 7
0
 protected function _beforeToHtml()
 {
     if (is_null($this->compatibilityType)) {
         throw new LogicException('Compatibility type was not set.');
     }
     return parent::_beforeToHtml();
 }
Exemplo n.º 8
0
 public function __construct()
 {
     parent::__construct();
     // Initialization block
     //------------------------------
     $this->setId('ebayListingHelp');
     //------------------------------
     $this->setTemplate('M2ePro/ebay/listing/help.phtml');
 }
Exemplo n.º 9
0
 protected function _beforeToHtml()
 {
     // ---------------------------------------
     $data = array('id' => 'productSearchMenu_cancel_button', 'label' => Mage::helper('M2ePro')->__('Close'), 'class' => 'productSearchMenu_cancel_button');
     $buttonCancelBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearchMenu_cancel_button', $buttonCancelBlock);
     // ---------------------------------------
     parent::_beforeToHtml();
 }
Exemplo n.º 10
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     $listing = Mage::helper('M2ePro/Component_Ebay')->getCachedObject('Listing', $this->getRequest()->getParam('listing_id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // ------------------------------------------------
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('Continue'), 'onclick' => ''));
     $this->setChild('mode_same_remember_pop_up_confirm_button', $buttonBlock);
 }
Exemplo n.º 11
0
 protected function _toHtml()
 {
     /* @var $tabsContainer Ess_M2ePro_Block_Adminhtml_Common_ManageListings_Tabs */
     $tabsContainer = $this->getLayout()->createBlock('M2ePro/adminhtml_common_manageListings_tabs');
     $tabsContainer->setDestElementId('tabs_container');
     $tabsContainer->addTab(self::TAB_ID_LISTING, $this->prepareListingTab());
     $tabsContainer->addTab(self::TAB_ID_LISTING_OTHER, $this->prepareListingOtherTab());
     $tabsContainer->addTab(self::TAB_ID_SEARCH, $this->prepareSearchTab());
     $tabsContainer->setActiveTab($this->getActiveTab());
     return parent::_toHtml() . $tabsContainer->toHtml() . '<div id="tabs_container"></div>';
 }
Exemplo n.º 12
0
    protected function _toHtml()
    {
        $data = array('style' => 'float: right; margin-top: 7px; ', 'label' => Mage::helper('M2ePro')->__('Close'), 'onclick' => 'EbayListingEbayGridHandlerObj.variationProductManageHandler.closeManageVariationsPopup()');
        $closeBtn = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
        $additionalJavascript = <<<HTML
<script type="text/javascript">
    EbayListingEbayGridHandlerObj.variationProductManageHandler.loadVariationsGrid(true);
</script>
HTML;
        return parent::_toHtml() . $additionalJavascript . $closeBtn->toHtml();
    }
Exemplo n.º 13
0
 protected function _beforeToHtml()
 {
     //------------------------------
     $data = array('id' => 'mapping_submit_button', 'label' => Mage::helper('M2ePro')->__('Confirm'), 'class' => 'mapping_submit_button submit');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('mapping_submit_button', $buttonBlock);
     //------------------------------
     //------------------------------
     $this->setChild('mapping_grid', $this->getLayout()->createBlock('M2ePro/adminhtml_listing_other_mapping_grid'));
     //------------------------------
     parent::_beforeToHtml();
 }
Exemplo n.º 14
0
 public function __construct()
 {
     parent::__construct();
     // Initialization block
     // ---------------------------------------
     $this->setId('configurationLinker');
     // ---------------------------------------
     // Set header text
     // ---------------------------------------
     $this->_headerText = Mage::helper('M2ePro')->__('Global Settings');
     // ---------------------------------------
     $this->setTemplate('M2ePro/configuration/linker.phtml');
 }
Exemplo n.º 15
0
 protected function _toHtml()
 {
     /* @var $tabsContainer Ess_M2ePro_Block_Adminhtml_Ebay_ManageListings_Tabs */
     $tabsContainer = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_manageListings_tabs');
     $tabsContainer->setDestElementId('tabs_container');
     $tabsContainer->addTab(self::TAB_ID_LISTING, $this->prepareListingTab());
     if (Mage::helper('M2ePro/View_Ebay')->isAdvancedMode() && Mage::helper('M2ePro/View_Ebay')->is3rdPartyShouldBeShown()) {
         $tabsContainer->addTab(self::TAB_ID_LISTING_OTHER, $this->prepareListingOtherTab());
     }
     $tabsContainer->addTab(self::TAB_ID_SEARCH, $this->prepareSearchTab());
     $tabsContainer->setActiveTab($this->getActiveTab());
     return parent::_toHtml() . $tabsContainer->toHtml() . '<div id="tabs_container"></div>';
 }
Exemplo n.º 16
0
 protected function _beforeToHtml()
 {
     //------------------------------
     $block = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_motor_view_group_grid');
     $block->setListingProductId($this->getListingProductId());
     $block->setMotorsType($this->getMotorsType());
     $this->setChild('view_group_grid', $block);
     //------------------------------
     //------------------------------
     $data = array('style' => 'float: right;', 'label' => Mage::helper('M2ePro')->__('Close'), 'onclick' => 'Windows.getFocusedWindow().close();');
     $closeBtn = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('motor_close_btn', $closeBtn);
     //------------------------------
     return parent::_beforeToHtml();
 }
Exemplo n.º 17
0
 protected function _toHtml()
 {
     /* @var $tabsContainer Ess_M2ePro_Block_Adminhtml_Common_ManageListings_Tabs */
     $tabsContainer = $this->getLayout()->createBlock('M2ePro/adminhtml_common_manageListings_tabs');
     $tabsContainer->setDestElementId('tabs_container');
     $tabsContainer->addTab(self::TAB_ID_LISTING, $this->prepareListingTab());
     $script = '';
     if (Mage::helper('M2ePro/View_Common')->is3rdPartyShouldBeShown(Ess_M2ePro_Helper_Component_Amazon::NICK) || Mage::helper('M2ePro/View_Common')->is3rdPartyShouldBeShown(Ess_M2ePro_Helper_Component_Buy::NICK)) {
         $tabsContainer->addTab(self::TAB_ID_LISTING_OTHER, $this->prepareListingOtherTab());
         $script = $this->getScriptFor3rdPartyControlVisibility($tabsContainer);
     }
     $tabsContainer->addTab(self::TAB_ID_SEARCH, $this->prepareSearchTab());
     $tabsContainer->setActiveTab($this->getActiveTab());
     return parent::_toHtml() . $tabsContainer->toHtml() . '<div id="tabs_container"></div>' . $script;
 }
Exemplo n.º 18
0
    protected function _toHtml()
    {
        // ---------------------------------------
        $data = array('class' => 'specifics_done_button', 'label' => Mage::helper('M2ePro')->__('Confirm'));
        $doneButton = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
        // ---------------------------------------
        $cancelWord = Mage::helper('M2ePro')->__('Cancel');
        $buttonsContainer = <<<HTML
<div style="margin-top: 17px; text-align: right; position: absolute; left: 83.5%; top: 90%;">
    <a href="javascript:void(0)" class="specifics_cancel_button">{$cancelWord}</a>
    &nbsp;&nbsp;&nbsp;&nbsp;
    {$doneButton->toHtml()}
</div>
HTML;
        return parent::_toHtml() . $buttonsContainer;
    }
Exemplo n.º 19
0
    protected function _toHtml()
    {
        $javascript = <<<JAVASCIRPT

<script type="text/javascript">

    Event.observe(window, 'load', function() {
        CommonHandlerObj = new CommonHandler();
    });

</script>

JAVASCIRPT;
        $activeTab = !is_null($this->getData('active_tab')) ? $this->getData('active_tab') : Ess_M2ePro_Block_Adminhtml_Common_Configuration_Tabs::TAB_ID_MARKETPLACE;
        $tabsBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_common_configuration_tabs', '', array('active_tab' => $activeTab));
        return $javascript . parent::_toHtml() . $tabsBlock->toHtml() . '<div id="tabs_container"></div>';
    }
 protected function _beforeToHtml()
 {
     // ---------------------------------------
     $data = array('id' => 'failedProducts_continue_button', 'label' => Mage::helper('M2ePro')->__('Continue'), 'class' => 'submit');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('failedProducts_continue_button', $buttonBlock);
     // ---------------------------------------
     // ---------------------------------------
     $data = array('id' => 'failedProducts_back_button', 'label' => Mage::helper('M2ePro')->__('Back'), 'class' => 'scalable back');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('failedProducts_back_button', $buttonBlock);
     // ---------------------------------------
     // ---------------------------------------
     $this->setChild('failedProducts_grid', $this->getLayout()->createBlock('M2ePro/adminhtml_listing_moving_failedProducts_grid', '', array('grid_url' => $this->getData('grid_url'))));
     // ---------------------------------------
     parent::_beforeToHtml();
 }
Exemplo n.º 21
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     // ---------------------------------------
     $listing = Mage::helper('M2ePro/Component')->getCachedUnknownObject('Listing', $this->getRequest()->getParam('id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // ---------------------------------------
     // ---------------------------------------
     $url = $this->getUrl('*/*/viewListing', array('_current' => true, 'id' => $this->getRequest()->getParam('id')));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('Review Your Products'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'save'));
     $this->setChild('review', $buttonBlock);
     // ---------------------------------------
     // ---------------------------------------
     $url = $this->getUrl('*/*/viewListingAndList', array('_current' => true, 'id' => $this->getRequest()->getParam('id')));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('List Added Products Now'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'save'));
     $this->setChild('list', $buttonBlock);
     // ---------------------------------------
 }
Exemplo n.º 22
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     // --------------------------------------
     $listing = Mage::helper('M2ePro/Component_Ebay')->getCachedObject('Listing', $this->getRequest()->getParam('listing_id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // --------------------------------------
     // --------------------------------------
     $url = $this->getUrl('*/adminhtml_ebay_listing/view', array('id' => $this->getRequest()->getParam('listing_id')));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('Review Your Products'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'save'));
     $this->setChild('review', $buttonBlock);
     // --------------------------------------
     // --------------------------------------
     $url = $this->getUrl('*/adminhtml_ebay_listing/view', array('id' => $this->getRequest()->getParam('listing_id'), 'do_list' => true));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('List Added Products Now'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'save'));
     $this->getRequest()->getParam('disable_list', false) && $buttonBlock->setData('style', 'display: none');
     $this->setChild('save_and_list', $buttonBlock);
     // --------------------------------------
 }
Exemplo n.º 23
0
    protected function _toHtml()
    {
        // ---------------------------------------
        $data = array('id' => 'category_edit_confirm_button', 'class' => '', 'label' => Mage::helper('M2ePro')->__('Confirm'), 'onclick' => 'AmazonTemplateDescriptionCategoryChooserHandlerObj.confirmCategory();');
        $doneButton = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
        // ---------------------------------------
        $cancelWord = Mage::helper('M2ePro')->__('Cancel');
        $buttonsContainer = <<<HTML
<div id="chooser_buttons_container">
    <a href="javascript:void(0)"
       onclick="AmazonTemplateDescriptionCategoryChooserHandlerObj.cancelPopUp()">{$cancelWord}</a>
    &nbsp;&nbsp;&nbsp;&nbsp;
    {$doneButton->toHtml()}
    <script type="text/javascript">amazonTemplateDescriptionCategoryChooserTabsJsTabs.moveTabContentInDest();</script>
</div>
HTML;
        /** @var Ess_M2ePro_Block_Adminhtml_Common_Amazon_Template_Description_Category_Chooser_Tabs $tabsBlock */
        $blockName = 'M2ePro/adminhtml_common_amazon_template_description_category_chooser_tabs';
        $tabsBlock = $this->getLayout()->createBlock($blockName);
        return parent::_toHtml() . $tabsBlock->toHtml() . '<div id="chooser_tabs_container"></div>' . $buttonsContainer;
    }
Exemplo n.º 24
0
    protected function _toHtml()
    {
        $translations = json_encode(array('Description' => Mage::helper('M2ePro')->__('Description')));
        $javascript = <<<JAVASCIRPT

<script type="text/javascript">

    M2ePro.translator.add({$translations});

    Event.observe(window, 'load', function() {
        CommonHandlerObj = new CommonHandler();
        LogHandlerObj = new LogHandler();
    });

</script>

JAVASCIRPT;
        $activeTab = !is_null($this->getData('active_tab')) ? $this->getData('active_tab') : Ess_M2ePro_Block_Adminhtml_Ebay_Log_Tabs::TAB_ID_LISTING;
        $tabsBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_log_tabs', '', array('active_tab' => $activeTab));
        return $javascript . parent::_toHtml() . $tabsBlock->toHtml() . '<div id="tabs_container"></div>';
    }
Exemplo n.º 25
0
 protected function _beforeToHtml()
 {
     // Magento order data
     // ---------------------------------------
     $this->realMagentoOrderId = NULL;
     $magentoOrder = $this->order->getMagentoOrder();
     if (!is_null($magentoOrder)) {
         $this->realMagentoOrderId = $magentoOrder->getRealOrderId();
     }
     // ---------------------------------------
     // ---------------------------------------
     if (!is_null($magentoOrder) && $magentoOrder->hasShipments()) {
         $url = $this->getUrl('*/adminhtml_order/resubmitShippingInfo', array('id' => $this->order->getId()));
         $data = array('class' => '', 'label' => Mage::helper('M2ePro')->__('Resend Shipping Information'), 'onclick' => 'setLocation(\'' . $url . '\');');
         $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
         $this->setChild('resubmit_shipping_info', $buttonBlock);
     }
     // ---------------------------------------
     // Shipping data
     // ---------------------------------------
     /** @var $shippingAddress Ess_M2ePro_Model_Ebay_Order_ShippingAddress */
     $shippingAddress = $this->order->getShippingAddress();
     $this->shippingAddress = $shippingAddress->getData();
     $this->shippingAddress['country_name'] = $shippingAddress->getCountryName();
     // ---------------------------------------
     // Global Shipping data
     // ---------------------------------------
     $globalShippingDetails = $this->order->getChildObject()->getGlobalShippingDetails();
     if (!empty($globalShippingDetails)) {
         $this->ebayWarehouseAddress = $globalShippingDetails['warehouse_address'];
         $this->globalShippingServiceDetails = $globalShippingDetails['service_details'];
     }
     // ---------------------------------------
     $this->setChild('item', $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_order_view_item'));
     $this->setChild('item_edit', $this->getLayout()->createBlock('M2ePro/adminhtml_order_item_edit'));
     $this->setChild('log', $this->getLayout()->createBlock('M2ePro/adminhtml_order_view_log_grid'));
     $this->setChild('external_transaction', $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_order_view_externalTransaction'));
     return parent::_beforeToHtml();
 }
Exemplo n.º 26
0
 protected function _beforeToHtml()
 {
     // Magento order data
     // ---------------------------------------
     $this->realMagentoOrderId = NULL;
     $magentoOrder = $this->order->getMagentoOrder();
     if (!is_null($magentoOrder)) {
         $this->realMagentoOrderId = $magentoOrder->getRealOrderId();
     }
     // ---------------------------------------
     // ---------------------------------------
     if (!is_null($magentoOrder) && $magentoOrder->hasShipments() && !$this->order->getChildObject()->isPrime()) {
         $url = $this->getUrl('*/adminhtml_order/resubmitShippingInfo', array('id' => $this->order->getId()));
         $data = array('class' => '', 'label' => Mage::helper('M2ePro')->__('Resend Shipping Information'), 'onclick' => 'setLocation(\'' . $url . '\');');
         $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
         $this->setChild('resubmit_shipping_info', $buttonBlock);
     }
     // ---------------------------------------
     // Shipping data
     // ---------------------------------------
     /** @var $shippingAddress Ess_M2ePro_Model_Amazon_Order_ShippingAddress */
     $shippingAddress = $this->order->getShippingAddress();
     $this->shippingAddress = $shippingAddress->getData();
     $this->shippingAddress['country_name'] = $shippingAddress->getCountryName();
     // ---------------------------------------
     // Merchant Fulfillment
     // ---------------------------------------
     if (!$this->order->getChildObject()->isCanceled() && !$this->order->getChildObject()->isPending() && !$this->order->getChildObject()->isFulfilledByAmazon() && $this->order->getMarketplace()->getChildObject()->isMerchantFulfillmentAvailable()) {
         $orderId = $this->order->getId();
         $data = array('class' => '', 'label' => Mage::helper('M2ePro')->__('Use Amazon\'s Shipping Services'), 'onclick' => "OrderMerchantFulfillmentHandlerObj.getPopupAction({$orderId});", 'style' => 'margin-top: 3px; margin-left: 6px;');
         $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
         $this->setChild('use_amazons_shipping_services', $buttonBlock);
     }
     // ---------------------------------------
     $this->setChild('item', $this->getLayout()->createBlock('M2ePro/adminhtml_common_amazon_order_view_item'));
     $this->setChild('item_edit', $this->getLayout()->createBlock('M2ePro/adminhtml_order_item_edit'));
     $this->setChild('log', $this->getLayout()->createBlock('M2ePro/adminhtml_order_view_log_grid'));
     return parent::_beforeToHtml();
 }
Exemplo n.º 27
0
    protected function _toHtml()
    {
        //------------------------------
        $tabsContainer = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_listing_category_chooser_tabs');
        $tabsContainer->setDestElementId('chooser_tabs_container');
        //------------------------------
        //------------------------------
        $data = array('id' => 'category_edit_confirm_button', 'class' => '', 'label' => Mage::helper('M2ePro')->__('Confirm'), 'onclick' => 'EbayListingCategoryChooserHandlerObj.confirmCategory();');
        $doneButton = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
        //------------------------------
        $cancelWord = Mage::helper('M2ePro')->__('Cancel');
        $buttonsContainer = <<<HTML

<div id="chooser_buttons_container">
    <a href="javascript:void(0)" onclick="EbayListingCategoryChooserHandlerObj.cancelPopUp()">{$cancelWord}</a>
    &nbsp;&nbsp;&nbsp;&nbsp;
    {$doneButton->toHtml()}
    <script type="text/javascript">ebayListingCategoryChooserTabsJsTabs.moveTabContentInDest();</script>
</div>

HTML;
        return parent::_toHtml() . $tabsContainer->toHtml() . '<div id="chooser_tabs_container"></div>' . $buttonsContainer;
    }
Exemplo n.º 28
0
    protected function _toHtml()
    {
        $parentHtml = parent::_toHtml();
        // ---------------------------------------
        $urls = Mage::helper('M2ePro')->getControllerActions('adminhtml_ebay_listing_categorySettings', array('_current' => true));
        $path = 'adminhtml_ebay_listing_categorySettings';
        $urls[$path] = $this->getUrl('*/' . $path, array('step' => 3, '_current' => true));
        $path = 'adminhtml_ebay_listing/review';
        $urls[$path] = $this->getUrl('*/' . $path, array('_current' => true));
        $urls = json_encode($urls);
        // ---------------------------------------
        $js = <<<HTML

<script type="text/javascript">
    M2ePro.url.add({$urls});
</script>
HTML;
        // ---------------------------------------
        return <<<HTML
{$parentHtml}
{$js}
HTML;
    }
Exemplo n.º 29
0
 protected function _beforeToHtml()
 {
     // ---------------------------------------
     $data = array('id' => 'productSearch_submit_button', 'label' => Mage::helper('M2ePro')->__('Search'), 'class' => 'productSearch_submit_button submit');
     $buttonSubmitBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_submit_button', $buttonSubmitBlock);
     // ---------------------------------------
     // ---------------------------------------
     $data = array('id' => 'productSearch_back_button', 'label' => Mage::helper('M2ePro')->__('Back'), 'class' => 'productSearch_back_button');
     $buttonBackBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_back_button', $buttonBackBlock);
     // ---------------------------------------
     // ---------------------------------------
     $data = array('id' => 'productSearch_cancel_button', 'label' => Mage::helper('M2ePro')->__('Close'), 'class' => 'productSearch_cancel_button');
     $buttonCancelBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_cancel_button', $buttonCancelBlock);
     // ---------------------------------------
     // ---------------------------------------
     $data = array('id' => 'productSearch_cleanSuggest_button', 'label' => Mage::helper('M2ePro')->__('Clear Search Results'), 'class' => 'productSearch_cleanSuggest_button', 'onclick' => 'ListingGridHandlerObj.productSearchHandler.clearSearchResultsAndOpenSearchMenu()');
     $buttonResetBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_cleanSuggest_button', $buttonResetBlock);
     // ---------------------------------------
     parent::_beforeToHtml();
 }
Exemplo n.º 30
0
 public function __construct()
 {
     parent::__construct();
     $this->setTemplate('M2ePro/ebay/configuration/category/help.phtml');
 }