sagepay 篮子的交付格式

发布于 2024-10-17 22:37:27 字数 929 浏览 2 评论 0原文

sage pay 抛出了关于我的篮子的错误。如果我把送货部分取下来,那么它就可以工作,但我想要送货。

// Ordering Shopping Basket
    // 
    $ThisBasket = count( $items );
    foreach( $items as $item ) {
        preg_match( "#^\[([^\]]+)\]\[([^\]]+)\]\[([^\]]+)\]$#is", $item, $match );
        $ThisBasket .= ':' . $match[2]; // Item Name ( - attribute/options )
        $ThisBasket .= ':' . $match[1]; // Quantity
        $ThisBasket .= ':' . self::$cp . ( $match[3] / $match[1] ); //Item Value
        $ThisBasket .= ':' . self::$cp . global_data::get_vat( $match[3] / $match[1], true ); // Item Tax
        $ThisBasket .= ':' . self::$cp . global_data::get_vat( $match[3] / $match[1] ); // // Item Total
        $ThisBasket .= ':' . self::$cp . global_data::get_vat( $match[3] ); // // Line Total
    }
    $ThisBasket .= ':Delivery:1:' . self::$cp . '4.99:---:' . self::$cp . '4.99:' . self::$cp . '4.99';

我不知道交付是如何构成的,也找不到任何文档。问候菲尔

sage pay is throwing an error about my basket. if i take the delivery part off then it works but i want delivery on.

// Ordering Shopping Basket
    // 
    $ThisBasket = count( $items );
    foreach( $items as $item ) {
        preg_match( "#^\[([^\]]+)\]\[([^\]]+)\]\[([^\]]+)\]$#is", $item, $match );
        $ThisBasket .= ':' . $match[2]; // Item Name ( - attribute/options )
        $ThisBasket .= ':' . $match[1]; // Quantity
        $ThisBasket .= ':' . self::$cp . ( $match[3] / $match[1] ); //Item Value
        $ThisBasket .= ':' . self::$cp . global_data::get_vat( $match[3] / $match[1], true ); // Item Tax
        $ThisBasket .= ':' . self::$cp . global_data::get_vat( $match[3] / $match[1] ); // // Item Total
        $ThisBasket .= ':' . self::$cp . global_data::get_vat( $match[3] ); // // Line Total
    }
    $ThisBasket .= ':Delivery:1:' . self::$cp . '4.99:---:' . self::$cp . '4.99:' . self::$cp . '4.99';

I have no idea how the delivery is structured and cannot find any documentation. regards phil

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清秋悲枫 2024-10-24 22:37:27

来自 VSP Direct 文档(格式适当):

Item                   Quantity   Item value  Item tax  Item Total  Line Total
Sound system           1          424.68      74.32     499.00      499.00
Donnie Darko           3          11.91       2.08      13.99       41.97
Finding Nemo           2          11.05       1.94      12.99       25.98
Delivery               ---        ---         ---       ---         4.99

将表示为:

4:Pioneer NSDV99 DVD 环绕声系统:1:424.68:74.32:499.00:499.00:Donnie Darko 导演剪辑:3:11.91:2.08:13.99 :41.97: 寻找尼莫:2:11.05:1.94:12.99:25.98:Delivery:---:---:---:---:4.99

所以看起来你只需要包括总数交货时,根据需要使用 --- 来填写空白字段。不确定您的代码中的 self::$cp 是什么,但如果您有总数,请使用它。

From the VSP Direct documentation (formatted appropriately):

Item                   Quantity   Item value  Item tax  Item Total  Line Total
Sound system           1          424.68      74.32     499.00      499.00
Donnie Darko           3          11.91       2.08      13.99       41.97
Finding Nemo           2          11.05       1.94      12.99       25.98
Delivery               ---        ---         ---       ---         4.99

Would be represented thus:

4:Pioneer NSDV99 DVD-Surround Sound System:1:424.68:74.32:499.00: 499.00:Donnie Darko Director’s Cut:3:11.91:2.08:13.99:41.97: Finding Nemo:2:11.05:1.94:12.99:25.98:Delivery:---:---:---:---:4.99

So it looks like you just need to include the total of the delivery, with --- as appropriate to complete the blank fields. Not sure what self::$cp is in your code, but if you have the total, just use that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文