diff --git a/business/jxcallback/orderman/financial.go b/business/jxcallback/orderman/financial.go index 8b0be312b..399443266 100644 --- a/business/jxcallback/orderman/financial.go +++ b/business/jxcallback/orderman/financial.go @@ -28,9 +28,9 @@ func (c *OrderManager) SaveOrderFinancialInfo(order *model.OrderFinancial, opera if operation == partner.UpdatedPeration { // db := orm.NewOrm() err = utils.CallFuncLogError(func() error { - _, err = dao.ExecuteSQL(db, "DELETE FROM order_Financial WHERE vendor_order_id = ? AND vendor_id = ?", order.VendorOrderID, order.VendorID) + _, err = dao.ExecuteSQL(db, "DELETE FROM order_financial WHERE vendor_order_id = ? AND vendor_id = ?", order.VendorOrderID, order.VendorID) return err - }, "SaveOrderFinancialInfo delete order_Financial, orderID:%s", order.VendorOrderID) + }, "SaveOrderFinancialInfo delete order_financial, orderID:%s", order.VendorOrderID) if err != nil { return err }