This commit is contained in:
邓皓元 2019-08-08 18:18:10 +08:00
parent a7773e5c07
commit 1c1fc8976c

View File

@ -131,7 +131,7 @@ class AddedOrderSync extends Command
$only = ['company_id', 'package_id', 'counts', 'unit_price']; $only = ['company_id', 'package_id', 'counts', 'unit_price'];
DB::table($table)->upsert($data, ['sim', 'order_id'], $only); DB::table($table)->upsert($data, ['sim', 'order_id', 'refunded_at', 'deleted_at'], $only);
} }
} }