當前位置: 首頁>>代碼示例>>PHP>>正文


PHP products_minierp::updateMargin方法代碼示例

本文整理匯總了PHP中products_minierp::updateMargin方法的典型用法代碼示例。如果您正苦於以下問題:PHP products_minierp::updateMargin方法的具體用法?PHP products_minierp::updateMargin怎麽用?PHP products_minierp::updateMargin使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在products_minierp的用法示例。


在下文中一共展示了products_minierp::updateMargin方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: ajaxReturn

            tep_db_perform('products_best_good_settings', $pbgs, 'update', "id={$type}");
        }
        $result['type'] = $type;
        $result['value'] = $value;
        ajaxReturn($result);
        exit;
    } elseif ($_POST['me_action'] == 'RECALCMARGIN') {
        set_time_limit(0);
        use_class('logger');
        $logger = new logger('cron', 'daily-counter-products-matexp');
        $logger->write('Margin is recalculated manually by ' . $session_userinfo['username']);
        $products = $class_pm->retrieveList("active_status=1");
        $pcounter = 0;
        foreach ($products as $p) {
            $pcounter++;
            $class_pm->updateMargin($p['products_id']);
            echo '. ';
        }
        $logger->write($pcounter . ' products updated successfully');
        $logger->close();
        echo 'DONE!';
        exit;
    }
}
$sop_mouse_over = array();
$sop_mouse_over['hide_hard'] = 'Report 0 stock for products with Hard Complexity and no depot stock on J&G and all SP Websites';
$sop_mouse_over['hide_extreme'] = 'Report 0 stock for products with Extreme Complexity and no depot stock on J&G and all SP Websites';
$sop_mouse_over['hide_nostock'] = 'Report 0 stock for products with ≤ defined star with no depot stock on OT.DE';
$sop_mouse_over['hide_oldproducts'] = 'Report 0 stock for long tail products (age and sold limit for defining long tail are configurable)';
$sop_mouse_over['hide_newproducts'] = 'Report 0 stock for new products (age and sold limit for defining new products are configurable)';
$sop_mouse_over['bestselling_period'] = 'Manobo will use sales data of selected Period to compare with ENTRY and EXIT level';
開發者ID:blasiuscosa,項目名稱:manobo-2008,代碼行數:31,代碼來源:settings-best-sellings.php


注:本文中的products_minierp::updateMargin方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。