diff --git a/src/app/customField/controllers/CustomFieldController.php b/src/app/customField/controllers/CustomFieldController.php index 508cf32ed27de48df5c3091d4635186b30eb39b9..46c5f380fdd273450adae191fc5d25bdba5b1abc 100644 --- a/src/app/customField/controllers/CustomFieldController.php +++ b/src/app/customField/controllers/CustomFieldController.php @@ -63,9 +63,10 @@ class CustomFieldController } $id = CustomFieldModel::create([ - 'label' => $body['label'], - 'type' => $body['type'], - 'values' => empty($body['values']) ? null : json_encode($body['values']) + 'label' => $body['label'], + 'type' => $body['type'], + 'values' => empty($body['values']) ? null : json_encode($body['values']), + 'default_value' => $body['default_value'] ]); return $response->withStatus(204)->withJson(['customFieldId' => $id]); @@ -97,8 +98,9 @@ class CustomFieldController CustomFieldModel::update([ 'set' => [ - 'label' => $body['label'], - 'values' => empty($body['values']) ? null : json_encode($body['values']) + 'label' => $body['label'], + 'values' => empty($body['values']) ? null : json_encode($body['values']), + 'default_value' => $body['default_value'] ], 'where' => ['id = ?'], 'data' => [$args['id']] diff --git a/src/app/customField/models/CustomFieldModel.php b/src/app/customField/models/CustomFieldModel.php index 81d7e6d8b4c9d891b74e359f1daa2460b8a3333c..236c723d7cd379ab6948a01a79ae14649d1794c5 100644 --- a/src/app/customField/models/CustomFieldModel.php +++ b/src/app/customField/models/CustomFieldModel.php @@ -29,7 +29,7 @@ class CustomFieldModel 'table' => ['custom_fields'], 'where' => empty($args['where']) ? [] : $args['where'], 'data' => empty($args['data']) ? [] : $args['data'], - 'order_by' => empty($args['orderBy']) ? [] : $args['orderBy'], + 'order_by' => empty($args['orderBy']) ? ['label'] : $args['orderBy'], 'limit' => empty($args['limit']) ? 0 : $args['limit'] ]);