diff --git a/app/Http/Controllers/Accessories/AccessoryCheckoutController.php b/app/Http/Controllers/Accessories/AccessoryCheckoutController.php index a6cb745923..656a040a55 100644 --- a/app/Http/Controllers/Accessories/AccessoryCheckoutController.php +++ b/app/Http/Controllers/Accessories/AccessoryCheckoutController.php @@ -75,7 +75,8 @@ class AccessoryCheckoutController extends Controller 'accessory_id' => $accessory->id, 'created_at' => Carbon::now(), 'user_id' => Auth::id(), - 'assigned_to' => $request->get('assigned_to') + 'assigned_to' => $request->get('assigned_to'), + 'note' => $request->input('note') ]); DB::table('accessories_users')->where('assigned_to', '=', $accessory->assigned_to)->where('accessory_id', '=', $accessory->id)->first(); diff --git a/app/Http/Controllers/Api/AccessoriesController.php b/app/Http/Controllers/Api/AccessoriesController.php index d921065a5f..6a01b52c09 100644 --- a/app/Http/Controllers/Api/AccessoriesController.php +++ b/app/Http/Controllers/Api/AccessoriesController.php @@ -154,7 +154,6 @@ class AccessoriesController extends Controller $offset = request('offset', 0); $limit = request('limit', 50); - $accessory->lastCheckoutArray = $accessory->lastCheckout->toArray(); $accessory_users = $accessory->users; $total = $accessory_users->count(); diff --git a/app/Http/Transformers/AccessoriesTransformer.php b/app/Http/Transformers/AccessoriesTransformer.php index 8b56ae05f6..d40642d875 100644 --- a/app/Http/Transformers/AccessoriesTransformer.php +++ b/app/Http/Transformers/AccessoriesTransformer.php @@ -68,8 +68,13 @@ class AccessoriesTransformer $array = array(); + + foreach ($accessory_users as $user) { + \Log::debug(print_r($user->pivot, true)); + \Log::debug(print_r($user->pivot, true)); $array[] = [ + 'assigned_pivot_id' => $user->pivot->id, 'id' => (int) $user->id, 'username' => e($user->username), @@ -77,7 +82,8 @@ class AccessoriesTransformer 'first_name'=> e($user->first_name), 'last_name'=> e($user->last_name), 'employee_number' => e($user->employee_num), - 'checkout_notes' => $accessory->lastCheckoutArray[0]['note'], + 'checkout_notes' => $user->pivot->note, + 'last_checkout' => Helper::getFormattedDateObject($user->pivot->created_at, 'datetime'), 'type' => 'user', 'available_actions' => ['checkin' => true] ]; diff --git a/app/Models/Accessory.php b/app/Models/Accessory.php index 25c835d382..fbd611939d 100755 --- a/app/Models/Accessory.php +++ b/app/Models/Accessory.php @@ -234,7 +234,7 @@ class Accessory extends SnipeModel public function users() { - return $this->belongsToMany('\App\Models\User', 'accessories_users', 'accessory_id', 'assigned_to')->withPivot('id')->withTrashed(); + return $this->belongsToMany('\App\Models\User', 'accessories_users', 'accessory_id', 'assigned_to')->withPivot('id', 'created_at', 'note')->withTrashed(); } /** diff --git a/app/Models/User.php b/app/Models/User.php index e030b23b2f..297a8f460e 100755 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -295,7 +295,8 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo */ public function accessories() { - return $this->belongsToMany('\App\Models\Accessory', 'accessories_users', 'assigned_to', 'accessory_id')->withPivot('id')->withTrashed(); + return $this->belongsToMany('\App\Models\Accessory', 'accessories_users', 'assigned_to', 'accessory_id') + ->withPivot('id', 'created_at', 'note')->withTrashed(); } /** diff --git a/database/migrations/2020_10_22_233743_move_accessory_checkout_note_to_join_table.php b/database/migrations/2020_10_22_233743_move_accessory_checkout_note_to_join_table.php new file mode 100644 index 0000000000..bfa9a7e362 --- /dev/null +++ b/database/migrations/2020_10_22_233743_move_accessory_checkout_note_to_join_table.php @@ -0,0 +1,89 @@ +string('note')->nullable(true)->default(null); + }); + + // Loop through the checked out accessories, find their related action_log entry, and copy over the note + // to the newly created note field + + $accessories = Accessory::get(); + $count = 0; + \Log::debug('Accessory Count: '. $accessories->count()); + + + // Loop through all of the accessories + foreach ($accessories as $accessory) { + $count++; + + \Log::debug('Querying join logs'); + $join_logs = DB::table('accessories_users')->get(); + + // Loop through the accessories_users records + foreach ($join_logs as $join_log) { + \Log::debug($join_logs->count().' join log records'); + \Log::debug('Looking for accessories_users that match '. $join_log->created_at); + + // Get the records from action_logs so we can copy the notes over to the new notes field + // on the accessories_users table + $action_log_entries = Actionlog::where('created_at', '=',$join_log->created_at) + ->where('target_id', '=',$join_log->assigned_to) + ->where('item_id', '=',$accessory->id) + ->where('target_type', '=','App\\Models\\User') + ->where('action_type', '=', 'checkout') + ->orderBy('created_at', 'DESC')->get(); + + \Log::debug($action_log_entries->count().' matching entries in the action_logs table'); + \Log::debug('Looking for action_logs that match '. $join_log->created_at); + + foreach ($action_log_entries as $action_log_entry) { + + \Log::debug('Checkout date in asset log: '.$action_log_entry->created_at.' against accessories_users: '.$join_log->created_at); + \Log::debug('Action log: '.$action_log_entry->created_at); + \Log::debug('Join log: '.$join_log->created_at); + + if ($action_log_entry->created_at == $join_log->created_at) { + DB::table('accessories_users') + ->where('id', $join_log->id) + ->update(['note' => $action_log_entry->note]); + } else { + \Log::debug('No match'); + } + } + + } + + + + } + + + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('accessories_users', function (Blueprint $table) { + $table->dropColumn('note'); + }); + } +} diff --git a/resources/views/accessories/view.blade.php b/resources/views/accessories/view.blade.php index 5ca50ea4f4..7241807cf3 100644 --- a/resources/views/accessories/view.blade.php +++ b/resources/views/accessories/view.blade.php @@ -76,6 +76,7 @@