1

I integrate Affiliates For All into an oxid shop. My problem is that I can't find the method that is called when the button "Ship Now" is pressed in the backend by an order. Can anyone tell me which method this is?

4

3 回答 3

0

当您单击“立即发货”按钮时,它会调用 admin/order_overview.php 中的函数 sendorder()。它更新 oxorder 的 oxsenddate 字段。

于 2012-06-20T18:10:43.400 回答
0

您可以简单地告诉所有调用的类和函数:

查看网络选项卡(Chrome:ctrl+I。Firefox:F12)并在单击按钮时查找请求参数。

Cl是 /admin 中的类名,fnc是函数名。如果省略 fnc,则默认为 render()。

于 2013-05-16T22:47:21.280 回答
0
<input type="submit" class="edittext" name="save" id="shippNowButton" onclick="document.sendorder.sendmail.value=document.getElementById('sendmail').checked?1:0;document.sendorder.submit();return false;" value="&nbsp;&nbsp;[{ oxmultilang ident="GENERAL_NOWSEND" }]&nbsp;&nbsp;" [{ $readonly }]>

当您单击一个值 = "1" 时,将传递给表单元素 (sendorder)。

于 2013-07-13T19:12:02.423 回答