我想从销售订单视图页面(管理员端)更新订购的产品数量。我添加了一个新按钮和更新订单数量的操作。但是我不知道为此更新表需要什么。或者还有其他解决方案吗?(没有创建新的订单概念)。
我已经经历了一次。
Is it possible to update order items quantity in Magento?
由于
答案 0 :(得分:0)
订单数据保存在数据库表sales_flat_order和sales_flat_order_item中。
您可以在(表格前缀)_sales_flat_order和(表格前缀)_sales_flat_order_item中分别找到订单和订单商品数据。但请记住,当下订单时,Magento只是复制其各自报价中的数据。所以在我看来你应该首先检查(表格前缀)_sales_flat_quote和(表格前缀)_sales_flat_quote_item。