@@ -427,6 +427,12 @@ class Import
}
+ # 图片本地化
+ public function local()
+ {
+
+ }
# 导入日志记录
public function log($mid, $type, $before, $after, $update = false)
{
@@ -421,9 +421,14 @@ class Manage
+ $update = array();
if ($goods_cash) {
- Dever::db('agent/order')->update(array('where_id' => $order['id'], 'goods_cash' => $goods_cash));
+ $update['goods_cash'] = $goods_cash;
+ $update['goods_status'] = 3;
+ $update['where_id'] = $order['id'];
+ Dever::db('agent/order')->update($update);