123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730 |
- @extends('layouts.master')
- @section('style')
- <link href="{{URL::asset('assets/dropzone/dropzone.css')}}" rel="stylesheet" type="text/css" />
- <style type="text/css">
- .panel-body{
- color: #4d4d4d;
- }
- .cls-assign:hover{
- color:#1ab394;
- }
- .cls-show-time{
- color: #000;
- font-style: italic;
- font-size: 11px;
- }
-
- </style>
- @endsection
- @section('content')
- <!-- Main content -->
- <section class="content">
- <!-- Main row -->
-
- <div class="row">
- <div class="col-md-9">
- @if(!empty($self->description))
- <div class="col-md-12">
- <section class="panel tasks-widget">
- <div class="panel-body">
- <b>Description:</b> {{$self->description}}
- </div>
- </section>
- </div>
- @endif
-
- <div class="col-md-6" style="">
- <div class="panel">
- <div class="panel-body" role="document">
- <div class="">
- <div class="modal-body">
- <h4 class="modal-title" id="gridSystemModalLabel">ADD TASK</h4>
- <form role="form" action="{{url('client/add_task')}}" method="POST">
- {!! csrf_field() !!}
- <input type="hidden" name="proj_id" value="{{$project_id}}">
- <div class="form-group">
- <label for="Add new Project">
- New Task
- </label>
- <input name="name" class="form-control" id="new-project" placeholder="Add new task" required="" type="new-project">
- </input>
- </div>
- <div class="form-group">
- <label for="Add new Project">
- Type
- </label>
- <select name="task_type" id="" class="form-control">
- <option value="2">Normal</option>
- <option value="1">Regular</option>
- </select>
- </div>
-
- <div class="form-group">
- <label for="Add new Project">
- Description
- </label>
- <textarea name="description" class="form-control" id="editor1" placeholder="Description" rows="5"></textarea>
- </div>
-
- <button type="submit" class="btn btn-primary">Add</button>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- <div class="col-md-6">
- <section class="panel tasks-widget">
- <header class="panel-heading">
- Created
- {{-- <button class="btn btn-success btn-xs pull-right" data-toggle="modal" data-target="#myModal2"><i class="fa fa-plus-circle" data-toggle="modal" data-target="#myModal2" aria-hidden="true"></i> ADD TASK</button> --}}
- </header>
- <div class="panel-body">
- <div class=" add-task-row">
- <?php $count=1; ?>
-
- <input type="hidden" class="cls-project-id" value="{{$project_id}}">
- <?php $user_idd = Auth::user()->id; ?>
- @if(count($tasks) > 0)
- @foreach($tasks as $tsk)
- {{$count++.'. '}}
- {{-- {{$tsk->name}} --}}
- <input type="hidden" value="{{$tsk->id}}">
-
- <span class="cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;">{{$tsk->name}}</span>
- <span class="cls-show-time">
- @if($tsk->user_id > 0)
- A:{{date("d-m-Y/ H:i",strtotime($tsk->assign_time))}}
- @else
- C:{{date("d-m-Y/ H:i",strtotime($tsk->created_time))}}
- @endif
- </span>
- @if($tsk->created_by == $user_idd)
- <a onclick="return confirm ('want to delete?')" href="{{url("client/remove_task/$tsk->id")}}" data-toggle="tooltip" title="Remove {{$tsk->name}}" style="color:#FD4B39;">
- <i class="fa fa-times pull-right" aria-hidden="true"></i>
- </a>
- @endif
- {{-- <input type="hidden" value="{{$tsk->id}}">
- <i class="fa fa-plus-circle pull-right cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;"></i> --}}
- <br>
- @endforeach
- @else
- {{ "No tasks available ..." }}
- @endif
- </div>
- <div class="table-foot">
-
- </div>
- </div>
- </section>
- </div>
- <div class="col-md-6">
- <section class="panel tasks-widget">
- <header class="panel-heading">
- In process
- </header>
- <div class="panel-body">
- <div class=" add-task-row">
- <?php $count=1; ?>
- @if(count($in_process) > 0)
- @foreach($in_process as $tsk)
- {{$count++.'. '}}
- {{-- {{$tsk->name}} --}}
- <input type="hidden" value="{{$tsk->id}}">
-
- <span class="cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;">{{$tsk->name}}</span>
- <span class="cls-show-time">
- S:{{date("d-m-Y/ H:i",strtotime($tsk->start_time))}}
- # E:{{date("H:i",strtotime($tsk->estimated_time))}}
- </span>
- {{-- <a onclick="return confirm ('want to delete?')" href="{{url("admin/remove_task/$tsk->id")}}" data-toggle="tooltip" title="Remove {{$tsk->name}}" style="color:#FD4B39;">
- <i class="fa fa-times pull-right" aria-hidden="true"></i>
- </a> --}}
- {{-- <input type="hidden" class="cls-project-id" value="{{$project_id}}"> --}}
- {{-- <input type="hidden" value="{{$tsk->id}}">
- <i class="fa fa-plus-circle pull-right cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;"></i> --}}
- <br>
- @endforeach
- @endif
- </div>
- <div class="table-foot">
-
- </div>
- </div>
- </section>
- </div>
- <div class="col-md-6">
- <section class="panel tasks-widget">
- <header class="panel-heading">
- Completed
- </header>
- <div class="panel-body">
- <div class=" add-task-row">
- </div>
- <div class="table-foot">
- <?php $count=1; ?>
- @if(count($complete) > 0)
- @foreach($complete as $tsk)
- {{$count++.'. '}}
- {{-- {{$tsk->name}} --}}
- <input type="hidden" value="{{$tsk->id}}">
-
- <span class="cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;">{{$tsk->name}}</span>
- <span class="cls-show-time">
- S:{{date("d-m-Y/ H:i",strtotime($tsk->start_time))}}
- # E:{{date("H:i",strtotime($tsk->estimated_time))}}
- </span>
- {{-- <input type="hidden" value="{{$tsk->id}}">
- <i class="fa fa-plus-circle pull-right cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;"></i> --}}
- <br>
- @endforeach
- @else
- {{"No task available ..."}}
- @endif
- </div>
- </div>
- </section>
- </div>
- <div class="col-md-6">
- <section class="panel tasks-widget">
- <header class="panel-heading">
- Checking
- </header>
- <div class="panel-body">
- <div class=" add-task-row">
- </div>
- <div class="table-foot">
- <?php $count=1; ?>
- @if(count($check) > 0)
- @foreach($check as $tsk)
- {{$count++.'. '}}
- {{-- {{$tsk->name}} --}}
- <input type="hidden" value="{{$tsk->id}}">
-
- <span class="cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;">{{$tsk->name}}</span>
- <span class="cls-show-time">
- S:{{date("d-m-Y/ H:i",strtotime($tsk->start_time))}}
- # E:{{date("H:i",strtotime($tsk->estimated_time))}}
- </span>
- {{-- <input type="hidden" value="{{$tsk->id}}">
- <i class="fa fa-plus-circle pull-right cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;"></i> --}}
- <br>
- @endforeach
- @else
- {{"No task available ..."}}
- @endif
- </div>
- </div>
- </section>
- </div>
- <div class="col-md-6">
- <section class="panel tasks-widget">
- <header class="panel-heading">
- Bug-fixing
- </header>
- <div class="panel-body">
- <div class=" add-task-row">
- </div>
- <div class="table-foot">
- <?php $count=1; ?>
- @if(count($bug) > 0)
- @foreach($bug as $tsk)
- {{$count++.'. '}}
- {{-- {{$tsk->name}} --}}
- <input type="hidden" value="{{$tsk->id}}">
-
- <span class="cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;">{{$tsk->name}}</span>
- <span class="cls-show-time">
- S:{{date("d-m-Y/ H:i",strtotime($tsk->start_time))}}
- # E:{{date("H:i",strtotime($tsk->estimated_time))}}
- </span>
- {{-- <input type="hidden" value="{{$tsk->id}}">
- <i class="fa fa-plus-circle pull-right cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;"></i> --}}
- <br>
- @endforeach
- @else
- {{"No task available ..."}}
- @endif
- </div>
- </div>
- </section>
- </div>
- <div class="col-md-6">
- <section class="panel tasks-widget">
- <header class="panel-heading">
- Done
- </header>
- <div class="panel-body">
- <div class=" add-task-row">
- </div>
- <div class="table-foot">
- <?php $count=1; ?>
- @if(count($done) > 0)
- @foreach($done as $tsk)
- {{$count++.'. '}}
- {{-- {{$tsk->name}} --}}
- <input type="hidden" value="{{$tsk->id}}">
-
- <span class="cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;">{{$tsk->name}}</span>
- <span class="cls-show-time">
- S:{{date("d-m-Y/ H:i",strtotime($tsk->start_time))}}
- # D:{{date("d-m-Y/ H:i",strtotime($tsk->closing_time))}}
- # E:{{date("H:i",strtotime($tsk->estimated_time))}}
- </span>
- {{-- <input type="hidden" value="{{$tsk->id}}">
- <i class="fa fa-plus-circle pull-right cls-assign" data-toggle="modal" data-target=".bs-example-modal-lg" aria-hidden="true" style="cursor:pointer;"></i> --}}
- <br>
- @endforeach
- @else
- {{"No task available ..."}}
- @endif
- </div>
- </div>
- </section>
- </div>
- <div class="col-md-6">
- <section class="panel tasks-widget">
- <header class="panel-heading">
- My tasks
- </header>
- <div class="panel-body">
- <div class=" add-task-row">
- </div>
- <div class="table-foot">
- No task available ...
- </div>
- </div>
- </section>
- </div>
- </div>
-
- <div class="col-md-3">
- <div class="panel">
- <header class="panel-heading">
- USERS
- {{-- <button class="btn btn-success btn-xs pull-right" data-toggle="modal" data-target="#myModal1"><i class="fa fa-plus-circle" data-toggle="modal" data-target="#myModal1" aria-hidden="true"></i> ADD USER</button> --}}
- </header>
- <div class="panel-body">
- <div class=" add-task-row">
- @if(!empty($proj_assign_user))
- <?php $count_a =1 ; ?>
- @foreach($proj_assign_user as $info)
- {{$count_a++.'. '.$info->one_user->name}}
- @if($info->pm_status == 1)
- <span style="color:#48C2A9;">{{"- PM"}}</span>
- @endif
- {{-- <a onclick="return confirm ('want to delete?')" href="{{url("admin/remove_proj_user/$info->id")}}" data-toggle="tooltip" title="Remove {{$info->one_user->name}}" style="color:#FD4B39;">
- <i class="fa fa-times pull-right" aria-hidden="true"></i>
- </a> --}}
- <br>
- @endforeach
- @endif
- </div>
- </div>
- <header class="panel-heading">
- DOCUMENT
- <button class="btn btn-success btn-xs pull-right upload-cls" data-toggle="modal" data-target="#att_modal"><i class="fa fa-plus-circle" aria-hidden="true"></i> ADD DOCUMENT</button>
- </header>
- <div class="panel-body">
- <div class=" add-task-row">
- @if(!empty($documents))
- <?php $count_a =1 ; ?>
- @foreach($documents as $info_document)
- {{$count_a++.'. '}}
- <a style="color:#4d4d4d;" target="_blank" href="{{url("assets/document/project/$info_document->url")}}">{{$info_document->name}}</a>
- @if($info_document->uploader_id == $user_idd)
- <a onclick="return confirm ('want to delete?')" href="{{url("client/remove_proj_document/$info_document->id")}}" data-toggle="tooltip" title="Remove {{$info_document->name}}" style="color:#FD4B39;">
- <i class="fa fa-times pull-right" aria-hidden="true"></i>
- </a>
- @endif
- <br>
- @endforeach
- @endif
- </div>
- </div>
- <header class="panel-heading">
- ACTIVITY LOG
- </header>
- <div class="panel-body" style="overflow: scroll; height:450px;">
- <div class=" add-task-row">
- @if(!empty($logss))
- <?php $countt =1 ; ?>
- @foreach($logss as $logg)
- {{$countt++.". "}}
- {!! $logg->msg !!}
- - {{$logg->one_user->name}}
- <br>
- @endforeach
- @endif
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- <!-- row end -->
- <!-- /.content -->
- <!-- Modal Add USER -->
- <div class="modal fade" id="myModal1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
- <div class="modal-dialog" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
- <h4 class="modal-title" id="gridSystemModalLabel">Add User</h4>
- </div>
- <div class="modal-body">
- <form role="form" action="{{url('admin/assign_project')}}" method="POST">
- {!! csrf_field() !!}
- <input type="hidden" name="proj_id" value="{{$project_id}}">
-
- <div class="form-group">
- <label for="Add new Project">
- Add
- </label>
- <select name="types" id="id-group-user" class="form-control">
- <option value="0">Select type</option>
- <option value="1">Group</option>
- <option value="2">User</option>
- </select>
- </div>
- <div class="form-group cls-group">
- <label for="Add new Project">
- Group
- </label>
- <select name="group_id" id="" class="form-control">
- @if(!empty($groups))
- @foreach($groups as $grps)
- <option value="{{$grps->id}}">{{$grps->group_name}}</option>
- @endforeach
- @endif
- </select>
- </div>
- <div class="form-group cls-user">
- <label for="Add new Project">
- User
- </label>
- <select name="user_id" id="" class="form-control">
- @foreach($users as $usr)
- <option value="{{$usr->id}}">{{$usr->name}}</option>
- @endforeach
- </select>
- </div>
- </div>
- <div class="modal-footer">
- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
- <button type="submit" class="btn btn-primary">Add</button>
- </div>
- </form>
- </div><!-- /.modal-content -->
- </div><!-- /.modal-dialog -->
- </div>
- <!-- Assign modal -->
- @include('client.modal_assign_task')
- @endsection
- @section('script')
- <script src="{{URL::asset('assets/dropzone.js')}}" type="text/javascript"></script>
- <script src="{{URL::asset('assets/ckeditor/ckeditor.js')}}"></script>
- <script type="text/javascript">
- $(document).ready(function(){
- $('.cls-group').hide();
- $('.cls-user').hide();
- $('.show-change-btn').hide();
- CKEDITOR.replace( 'editor1' );
- CKEDITOR.replace( 'comment_txt' );
- });
- $('.cls-proj').change(function(event){
-
- var proj_id = $(this).val();
-
- $.ajax({
- url: "{{url("admin/change_tast_by_proj")}}",
- type: 'POST',
- data: { proj_id:proj_id},
- })
- .done(function(data){
- $('.cls-tasks').html(data);
- });
-
- });
- $('#id-group-user').change(function(event)
- {
- var chk_id = $(this).val();
- if(chk_id == 1){
- $('.cls-group').show();
- $('.cls-user').hide();
- }
- else if(chk_id == 2){
- $('.cls-group').hide();
- $('.cls-user').show();
- }
- else{
- $('.cls-group').hide();
- $('.cls-user').hide();
- }
- });
- $('.cls-assign').click(function(event)
- {
- var proj_id = $('.cls-project-id').val();
- var task_id = $(this).prev().val();
- $('#id_task_id').val(task_id);
- $.ajax({
- url: "{{url('client/user_list_for_task_assign')}}",
- type: 'POST',
- data: {proj_id: proj_id, task_id: task_id},
- })
- .done(function(data) {
- var status = data[4];
- if(status > 1)
- {
- $('.show-change-btn').show();
- }
- else{
- $('.show-change-btn').hide();
- }
- $('.cls-proj-user').html(data[0]);
- $('.assinged-users').html(data[1]);
- $('.show-logs').html(data[2]);
- $('.comments-cls').html(data[3]);
- $('.cls-task-details').html(data[5]);
- });
-
- });
- $('.assign-task-user').click(function(event)
- {
- //url('admin/task_assign_to_user')
- var id_estimated_time = $('#id_estimated_time').val();
- var id_user_id = $('#id_user_id').val();
- var id_task_id = $('#id_task_id').val();
-
- if(id_estimated_time.length > 0){
- $.ajax({
- url: "{{url('admin/task_assign_to_user')}}",
- type: 'POST',
- data: {id_estimated_time: id_estimated_time,id_user_id: id_user_id,id_task_id: id_task_id},
- })
- .done(function(data) {
- $('.assinged-users').html(data);
- });
- }
- else{
- alert('Please define time estimate!');
- }
-
- });
- $('.assinged-users').on('click','.remove-task-assign-user',function(){
- var id = $(this).prev('input').val();
- var task_id = $('#id_task_id').val();
- $.ajax({
- url: "{{url('admin/remove_assign_task_user')}}",
- type: 'POST',
- data: {id: id,task_id: task_id},
- })
- .done(function(data) {
- $('.assinged-users').html(data);
- });
- });
- $('.add-task-comment').click(function(event) {
-
- var comment = CKEDITOR.instances.comment_txt.getData();
- var task_id = $('#id_task_id').val();
- if(comment.length > 0){
- $.ajax({
- url: "{{url('client/add_task_comment')}}",
- type: 'POST',
- data: {comment: comment,task_id: task_id},
- })
- .done(function(data) {
-
- $('.comments-cls').html(data);
- });
- }
- else{
- alert('Please fill-up comment field.');
- }
-
- });
- $('.comments-cls').on('click','.edit_comment',function(){
-
- var id = $(this).data('id');
-
- $.ajax({
- url: '{{url('admin/edit_comment_form')}}',
- type: 'POST',
- data: {id: id},
- })
- .done(function(data) {
- $('.modal-edit').modal('show');
- $('.update-comment').val(data['comment']);
- $('.update-comment-id').val(data['id']);
- });
-
- });
- $('.comments-cls').on('click','.remove_comment',function(){
-
- var id = $(this).data('id');
- var task_id = $('#id_task_id').val();
- $.ajax({
- url: "{{url('admin/remove_comment')}}",
- type: 'POST',
- data: {id: id,task_id: task_id},
- })
- .done(function(data) {
- $('.comments-cls').html(data);
- });
- });
- $('.save-updated-comment').click(function(event) {
-
- var id = $('.update-comment-id').val();
- var comment = $('.update-comment').val();
- var task_id = $('#id_task_id').val();
- $.ajax({
- url: '{{url('admin/save_update_comment')}}',
- type: 'POST',
- data: {id: id,comment: comment,task_id: task_id},
- })
- .done(function(data) {
- $('.modal-edit').modal('hide');
- $('.comments-cls').html(data);
- $('.update-comment').val('');
- alert('Data updated successfully!');
- });
-
- });
- $('.cls-change-created').click(function(event)
- {
- if(confirm("Are you sure you want to change status ?"))
- {
- var task_id = $('#id_task_id').val();
- var status = $(this).data('id');
-
- $.ajax({
- url: "{{url('client/change_to_process')}}",
- type: 'POST',
- data: {task_id: task_id, status: status},
- })
- .done(function(data) {
-
- if(data == 'Yes'){
- alert('Status Changed !!');
- location.reload();
- }
- else{
- alert('Status Not Changed !!');
- }
- });
-
- }
- });
- $('.upload-cls').click(function(event) {
-
- var id = $('.cls-project-id').val();
- $('.cls-proj-id').val(id);
- });
- $('.add-task-comment-doc').click(function(event) {
- var task_id = $('#id_task_id').val();
- $('.cls-task-doc-id').val(task_id);
- });
- $('.attatch-close-btn').click(function(event) {
-
- location.reload();
- });
- $('.attatchment-doc-comment').click(function(event) {
-
- //this event only for fetch the comments after close
- //attatchemnt dropzone.
- var comment = '';
- var task_id = $('#id_task_id').val();
- $.ajax({
- url: "{{url('client/add_task_comment')}}",
- type: 'POST',
- data: {comment: comment,task_id: task_id},
- })
- .done(function(data){
-
- $('.comments-cls').html(data);
- });
- });
- </script>
- @endsection
|