Ecshop订单状态数据库字段(order_status,shipping_status,pay_status)

echop的订单状态都是在ecs_order_info表中的字段里的。

ecshop电子商务系统中,ECSHOP的订单有很多的状态。这些状态,是维持和保证ECSHOP后台操作订单状态转换的依据。

order_status = 0表示订单未确认

order_status = 1表示订单已经确认

order_status = 2表示订单已经取消

pay_status = 0表示未付款

pay_status = 2表示已付款

shipping_status = 3表示已配货

shipping_status = 1表示已发货

shipping_status = 2表示已收货

总结以上ecshop订单的状态,方便开发人员总结开发操作。

废话不多说,直接看表。

订单状态 未确认 取消 确认 已付款 配货中 已发货 已收货 退货
order_status 0 2 1 1 1 5 5 4
shipping_status 0 0 0 0 3 1 2 0
pay_status 0 0 0 2 2 2 2 0

猜你喜欢

转载自blog.csdn.net/jzm1963173402/article/details/72956654