|
@@ -473,7 +473,7 @@ class Application extends Base
|
|
|
$remote_order = DB::table('remote_order')
|
|
|
->where('application_id', $application_id)
|
|
|
->where('status', 'neq', self::ORDER_STATUS['CANCEL'])
|
|
|
- ->filed('id')
|
|
|
+ ->field('id')
|
|
|
->find();
|
|
|
if($remote_order) {
|
|
|
DB::rollback();
|
|
@@ -519,7 +519,7 @@ class Application extends Base
|
|
|
$remote_order = DB::table('remote_order')
|
|
|
->where('application_id', $application_id)
|
|
|
->where('status', 'neq', self::ORDER_STATUS['CANCEL'])
|
|
|
- ->filed('id')
|
|
|
+ ->field('id')
|
|
|
->find();
|
|
|
if($remote_order) {
|
|
|
DB::rollback();
|