gpt4 book ai didi

php - 如何从 Magento 中删除保存的已完成订单的信用卡号?

转载 作者:行者123 更新时间:2023-11-29 01:40:33 25 4
gpt4 key购买 nike

我们正在为我们的网站使用已保存的抄送。我们想刷新已完成订单的已保存信用卡信息。有人可以帮助完成此操作吗?

最佳答案

最后我创建了一个自定义扩展来执行此操作。Magento 将 CC 信息存储在 sales_flat_order_payment 和 sales_flat_quote_payment 中。我扩展了订单网格类并添加了自定义操作和 Controller 。

`$updatefirsttable = "UPDATE `sales_flat_order_payment` SET `cc_number_enc` = NULL,`cc_exp_month`=NULL,`cc_exp_year`=NULL,`cc_type`=NULL WHERE `entity_id` =$transactions->entity_id";
$updatesecondtable = "UPDATE `sales_flat_quote_payment` SET `cc_number_enc` = NULL,`cc_exp_month`=NULL,`cc_exp_year`=NULL,`cc_type`=NULL WHERE `quote_id` =$transactions->quote_id";`

关于php - 如何从 Magento 中删除保存的已完成订单的信用卡号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24818083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com