mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Cleaned up the last of the FIXME's (or downgraded them to TODO's)
This commit is contained in:
parent
5cf66851f7
commit
54cb38603b
|
@ -62,7 +62,7 @@ class Importer extends Component
|
||||||
{
|
{
|
||||||
\Log::debug("Alert object received: ".print_r($obj,true));
|
\Log::debug("Alert object received: ".print_r($obj,true));
|
||||||
$this->message = $obj;
|
$this->message = $obj;
|
||||||
$this->message_type = "danger"; // FIXME - when does this get reset? Only when you click the 'x'?
|
$this->message_type = "danger";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function toggleEvent($id)
|
public function toggleEvent($id)
|
||||||
|
@ -80,12 +80,16 @@ class Importer extends Component
|
||||||
foreach($this->files as $file) {
|
foreach($this->files as $file) {
|
||||||
\Log::debug("File id is: ".$file->id);
|
\Log::debug("File id is: ".$file->id);
|
||||||
if($id == $file->id) {
|
if($id == $file->id) {
|
||||||
// FIXME - should I do a try/catch on this and use the file_delete_failure or whatever, if needed?
|
if(Storage::delete('private_uploads/imports/'.$file->file_path)) {
|
||||||
Storage::delete('imports/'.$file->file_path); // FIXME - last time I ran this, it *didn't* delete the file?!
|
$file->delete();
|
||||||
$file->delete();
|
|
||||||
|
|
||||||
$this->message = trans('admin/hardware/message.import.file_delete_success');
|
$this->message = trans('admin/hardware/message.import.file_delete_success');
|
||||||
$this->message_type = 'success';
|
$this->message_type = 'success';
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
$this->message = trans('admin/hardware/message.import.file_delete_error');
|
||||||
|
$this->message_type = 'danger';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -106,7 +106,7 @@ class ImporterFile extends Component
|
||||||
{
|
{
|
||||||
$customFields = [];
|
$customFields = [];
|
||||||
foreach($this->customFields AS $field) {
|
foreach($this->customFields AS $field) {
|
||||||
$customFields[$field->id] = $field->name;
|
$customFields[$field->db_column_name()] = $field->name;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch($type) {
|
switch($type) {
|
||||||
|
@ -128,7 +128,7 @@ class ImporterFile extends Component
|
||||||
default:
|
default:
|
||||||
$results = self::$general;
|
$results = self::$general;
|
||||||
}
|
}
|
||||||
asort($results); // FIXME - this isn't sorting right yet.
|
asort($results, SORT_FLAG_CASE|SORT_STRING);
|
||||||
return $results;
|
return $results;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -238,7 +238,7 @@ class CustomField extends Model
|
||||||
*
|
*
|
||||||
* @author [A. Gianotto] [<snipe@snipe.net>]
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
||||||
* @since [v3.0]
|
* @since [v3.0]
|
||||||
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function db_column_name()
|
public function db_column_name()
|
||||||
{
|
{
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
<div class="alert alert-warning">
|
<div class="alert alert-warning">
|
||||||
<strong>Warning</strong> Some Errors occurred while importing {{-- FIXME: hardcoded string --}}
|
<strong>Warning</strong> Some Errors occurred while importing {{-- TODO: hardcoded string --}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="errors-table">
|
<div class="errors-table">
|
||||||
|
@ -153,7 +153,7 @@
|
||||||
},
|
},
|
||||||
progress: function(e, data) {
|
progress: function(e, data) {
|
||||||
@this.progress = parseInt((data.loaded / data.total * 100, 10));
|
@this.progress = parseInt((data.loaded / data.total * 100, 10));
|
||||||
@this.progress_message = @this.progress+'% Complete'; // FIXME - this should come from server (so it can be internationalized)
|
@this.progress_message = @this.progress+'% Complete'; // TODO - this should come from server (so it can be internationalized)
|
||||||
},
|
},
|
||||||
fail: function(e, data) {
|
fail: function(e, data) {
|
||||||
@this.progress_bar_class = "progress-bar-danger";
|
@this.progress_bar_class = "progress-bar-danger";
|
||||||
|
|
|
@ -223,12 +223,6 @@ Route::group(['prefix' => 'admin', 'middleware' => ['auth', 'authorize:superuser
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//Route::group(['prefix' => 'import', 'middleware' => ['auth']], function () {
|
|
||||||
// Route::get('/',
|
|
||||||
// [ImportsController::class, 'index']
|
|
||||||
// )->name('imports.index');
|
|
||||||
//});
|
|
||||||
|
|
||||||
Route::get('/import',
|
Route::get('/import',
|
||||||
\App\Http\Livewire\Importer::class
|
\App\Http\Livewire\Importer::class
|
||||||
)->middleware('auth')->name('imports.index');
|
)->middleware('auth')->name('imports.index');
|
||||||
|
|
Loading…
Reference in a new issue