Heim  >  Artikel  >  CMS-Tutorial  >  So stornieren Sie die Versandart in Ecshop

So stornieren Sie die Versandart in Ecshop

藏色散人
藏色散人Original
2023-03-03 09:56:372107Durchsuche

So stornieren Sie die Versandart in ecshop: 1. Suchen und öffnen Sie die Datei „flow.dwt“ und löschen Sie dann „2ad971cd9ba7732031051590435ad792...<.“ ;!-- {/if} -->“ Code; 2. Ändern Sie „checkOrderForm(frm)“ in „js/shopping_flow.js“ in „if (document.getElementById(...)“.

So stornieren Sie die Versandart in Ecshop

Die Betriebsumgebung dieses Tutorials: Windows 10-System, Ecshop-Version 2.7.3, DELL G3-Computer

Wie storniere ich die Liefermethode in Ecshop?

ECSHOP entfernt die Liefermethode

Nehmen Sie die 2.7. 3 Standardversion als Beispiel

1. Löschen Sie diesen Absatz in flow.dwt

<!--{if $total.real_goods_count neq 0}-->
        <div class="colbox colpd">
          <h3>配送方式</h3>
          <div class="colboxcontent">
            <table border="0" cellspacing="0" class="styletable">
              <tr>
                <th width="5"> </th>
                <th width="100">{$lang.name}</th>
                <th width="400">{$lang.describe}</th>
                <th width="100">{$lang.fee}</th>
                <th width="80">{$lang.free_money}</th>
                <th width="80">{$lang.insure_fee}</th>
              </tr>
              <!-- {foreach from=$shipping_list item=shipping key=key} 循环配送方式 -->
              <tr>
                <td>
                  <input name="shipping" type="radio" value="{$shipping.shipping_id}" {if $order.shipping_id eq $shipping.shipping_id}checked="true"{/if} supportCod="{$shipping.support_cod}" insure="{$shipping.insure}" οnclick="selectShipping(this)" id="shipping{$key}" />
                </td>
                <td><label for="shipping{$key}">{$shipping.shipping_name}</label></td>
                <td>{$shipping.shipping_desc}</td>
                <td>{$shipping.format_shipping_fee}</td>
                <td>{$shipping.free_money}</td>
                <td>
                  <!-- {if $shipping.insure neq 0} -->
                  {$shipping.insure_formated}
                  <!-- {else} -->
                  {$lang.not_support_insure}
                  <!-- {/if} -->
                </td>
              </tr>
              <!-- {/foreach} 循环配送方式 -->
              <tr>
                <td colspan="6" align="right">
                  <label for="ECS_NEEDINSURE" class="textStrong">
                  <input name="need_insure" type="checkbox"  οnclick="selectInsure(this.checked)" value="1"{if $order.need_insure} checked="checked"{/if}{if $insure_disabled} disabled="disabled"{/if} id="ECS_NEEDINSURE"  />
                  {$lang.need_insure}
                  </label>
                </td>
              </tr>
            </table>
          </div>
        </div><!-- /colbox -->
        <!-- {else} -->
        <input name = "shipping" type="radio" value = "-1" checked="checked" style="display:none" />
        <!-- {/if} -->

2. Ändern Sie checkOrderForm(frm) in js/shopping_flow.js

3. In flow.php if ($_REQUEST['step '] == 'done'

function checkOrderForm(frm)
{
 
  // 检查用户输入的余额
  if (document.getElementById("ECS_SURPLUS"))
  {
    var surplus = document.getElementById("ECS_SURPLUS").value;
    var error   = Utils.trim(Ajax.call(&#39;flow.php?step=check_surplus&#39;, &#39;surplus=&#39; + surplus, null, &#39;GET&#39;, &#39;TEXT&#39;, false));
 
    if (error)
    {
      try
      {
        document.getElementById("ECS_SURPLUS_NOTICE").innerHTML = error;
      }
      catch (ex)
      {
      }
      return false;
    }
  }
 
  // 检查用户输入的积分
  if (document.getElementById("ECS_INTEGRAL"))
  {
    var integral = document.getElementById("ECS_INTEGRAL").value;
    var error    = Utils.trim(Ajax.call(&#39;flow.php?step=check_integral&#39;, &#39;integral=&#39; + integral, null, &#39;GET&#39;, &#39;TEXT&#39;, false));
 
    if (error)
    {
      return false;
      try
      {
        document.getElementById("ECS_INTEGRAL_NOTICE").innerHTML = error;
      }
      catch (ex)
      {
      }
    }
  }
  frm.action = frm.action + &#39;?step=done&#39;;
  return true;
}

und

if ($order[&#39;order_amount&#39;] > 0)
    {
        $payment = payment_info($order[&#39;pay_id&#39;]);
 
        include_once(&#39;includes/modules/payment/&#39; . $payment[&#39;pay_code&#39;] . &#39;.php&#39;);
 
        $pay_obj    = new $payment[&#39;pay_code&#39;];
 
        $pay_online = $pay_obj->get_code($order, unserialize_config($payment[&#39;pay_config&#39;]));
 
        $order[&#39;pay_desc&#39;] = $payment[&#39;pay_desc&#39;];
 
        $smarty->assign(&#39;pay_online&#39;, $pay_online);
    }

4. Der Text in e353f4b12e30202cd8ee9c221b860f70 kann von Ihnen selbst definiert werden

Empfohlenes Lernen: „

ECShop Tutorial

Das obige ist der detaillierte Inhalt vonSo stornieren Sie die Versandart in Ecshop. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:Welche Funktionen hat Ecshop?Nächster Artikel:Keiner