コード例 #1
0
function _fetch_shipping_cost($weight, $shipping_type, $shipping_country, $max_length, $max_width, $total_height)
{
    $rule_matched = shipping_accepted_rule($shipping_country, $weight, $shipping_type, $max_length, $max_width, $total_height);
    return $rule_matched;
}
コード例 #2
0
ファイル: price.php プロジェクト: ohjack/mallerp_standard
 private function _fetch_shipping_cost($weight, $shipping_type, $shipping_country)
 {
     $rule_matched = shipping_accepted_rule($shipping_country, $weight, $shipping_type);
     return $rule_matched;
 }