Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
onestartup-crm
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Angel Martin
onestartup-crm
Commits
31a56d91
Commit
31a56d91
authored
Apr 20, 2018
by
Angel MAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
seguimiento de registro agregado
parent
839749fc
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
172 additions
and
1 deletions
+172
-1
README.md
README.md
+18
-0
AdminCrmController.php
src/AdminCrmController.php
+14
-0
CrmListServiceProvider.php
src/CrmListServiceProvider.php
+1
-0
Tracing.php
src/Tracing.php
+26
-0
2018_04_20_155934_create_tracings_table.php
src/migrations/2018_04_20_155934_create_tracings_table.php
+39
-0
routes.php
src/routes.php
+1
-1
form-bitacora.blade.php
src/views/form-bitacora.blade.php
+15
-0
show.blade.php
src/views/show.blade.php
+58
-0
No files found.
README.md
View file @
31a56d91
...
@@ -12,6 +12,24 @@ composer require onestartup/crm
...
@@ -12,6 +12,24 @@ composer require onestartup/crm
```
php
```
php
Onestartup\Crm\CrmListServiceProvider
::
class
,
Onestartup\Crm\CrmListServiceProvider
::
class
,
```
`
```
`
- Run migration
```php
php artisan migrate
```
- add next lines to app/User.php
```php
public function tracings()
{
return $this->hasMany('Onestartup\Crm\Tracing', 'user_id');
}
```
- add next lines to app/Interested.php
```php
public function tracings()
{
return $this->hasMany('Onestartup\Crm\Tracing', 'interested_id');
}
```
- run serv
- run serv
```php
```php
php artisan serve
php artisan serve
...
...
src/AdminCrmController.php
View file @
31a56d91
...
@@ -7,6 +7,7 @@ use App\Http\Requests;
...
@@ -7,6 +7,7 @@ use App\Http\Requests;
use
App\Http\Controllers\Controller
;
use
App\Http\Controllers\Controller
;
use
Yajra\Datatables\Datatables
;
use
Yajra\Datatables\Datatables
;
use
App\Interested
;
use
App\Interested
;
use
Onestartup\Crm\Tracing
;
class
AdminCrmController
extends
Controller
class
AdminCrmController
extends
Controller
{
{
...
@@ -35,4 +36,17 @@ class AdminCrmController extends Controller
...
@@ -35,4 +36,17 @@ class AdminCrmController extends Controller
return
view
(
'crm::show'
)
return
view
(
'crm::show'
)
->
with
(
'interested'
,
$interested
);
->
with
(
'interested'
,
$interested
);
}
}
public
function
storeTracing
(
Request
$request
,
$id
)
{
$interested
=
Interested
::
find
(
$id
);
$comment
=
new
Tracing
(
$request
->
all
());
$comment
->
user_id
=
\Auth
::
user
()
->
id
;
$interested
->
tracings
()
->
save
(
$comment
);
return
redirect
()
->
back
()
->
with
(
'message_success'
,
'Información agregada correctamente'
);
}
}
}
src/CrmListServiceProvider.php
View file @
31a56d91
...
@@ -14,6 +14,7 @@ class CrmListServiceProvider extends ServiceProvider
...
@@ -14,6 +14,7 @@ class CrmListServiceProvider extends ServiceProvider
public
function
boot
()
public
function
boot
()
{
{
include
__DIR__
.
'/routes.php'
;
include
__DIR__
.
'/routes.php'
;
$this
->
loadMigrationsFrom
(
__DIR__
.
'/migrations'
);
}
}
/**
/**
...
...
src/Tracing.php
0 → 100644
View file @
31a56d91
<?php
namespace
Onestartup\Crm
;
use
Illuminate\Database\Eloquent\Model
;
class
Tracing
extends
Model
{
protected
$table
=
'tracings'
;
protected
$fillable
=
[
'type'
,
'detail'
,
'interested_id'
,
'user_id'
];
public
function
user
()
{
return
$this
->
belongsTo
(
'App\User'
,
'user_id'
);
}
public
function
interested
()
{
return
$this
->
belongsTo
(
'App\Interested'
,
'interested_id'
);
}
}
src/migrations/2018_04_20_155934_create_tracings_table.php
0 → 100644
View file @
31a56d91
<?php
use
Illuminate\Support\Facades\Schema
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Database\Migrations\Migration
;
class
CreateTracingsTable
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
create
(
'tracings'
,
function
(
Blueprint
$table
)
{
$table
->
increments
(
'id'
);
$table
->
string
(
'type'
,
355
);
$table
->
string
(
'detail'
,
555
);
$table
->
integer
(
'interested_id'
)
->
unsigned
();
$table
->
foreign
(
'interested_id'
)
->
references
(
'id'
)
->
on
(
'interesteds'
);
$table
->
integer
(
'user_id'
)
->
unsigned
();
$table
->
foreign
(
'user_id'
)
->
references
(
'id'
)
->
on
(
'users'
);
$table
->
timestamps
();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
dropIfExists
(
'tracings'
);
}
}
src/routes.php
View file @
31a56d91
...
@@ -5,5 +5,5 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
...
@@ -5,5 +5,5 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
Route
::
get
(
'admin/crm'
,
'Onestartup\Crm\AdminCrmController@list'
)
->
name
(
'crm.list'
);
Route
::
get
(
'admin/crm'
,
'Onestartup\Crm\AdminCrmController@list'
)
->
name
(
'crm.list'
);
Route
::
get
(
'admin/crm/datatable'
,
'Onestartup\Crm\AdminCrmController@datatable'
)
->
name
(
'crm.datatable'
);
Route
::
get
(
'admin/crm/datatable'
,
'Onestartup\Crm\AdminCrmController@datatable'
)
->
name
(
'crm.datatable'
);
Route
::
get
(
'admin/crm/{id}/show'
,
'Onestartup\Crm\AdminCrmController@show'
)
->
name
(
'crm.show'
);
Route
::
get
(
'admin/crm/{id}/show'
,
'Onestartup\Crm\AdminCrmController@show'
)
->
name
(
'crm.show'
);
Route
::
post
(
'admin/crm/{id}/tracing/store'
,
'Onestartup\Crm\AdminCrmController@storeTracing'
)
->
name
(
'crm.tracing.store'
);
});
});
src/views/form-bitacora.blade.php
0 → 100644
View file @
31a56d91
@
include
(
'partials.messages_partial'
)
{
!!
Form
::
open
([
'route'
=>
[
'crm.tracing.store'
,
$interested
->
id
],
"method"
=>
"POST"
])
!!
}
<
div
class
="
form
-
group
">
{!! Form::label('type', 'Tipo', ['class'=>'form-control-label']) !!}
{!! Form::select('type', ['Llamada'=>'Llamada','WhatsApp'=>'WhatsApp','SMS'=>'SMS','Email'=>'Email','Comentarios'=>'Comentarios'], null, ['class' => 'form-control select2', 'required'=>'required']) !!}
</div>
<div class="
form
-
group
">
{!! Form::label('detail', 'Detalle', ['class'=>'form-control-label']) !!}
{!! Form::text('detail', null, ['class' => 'form-control', 'required'=>'required']) !!}
</div>
<br>
{!! Form::submit('Agregar', ['class'=>'btn btn-danger btn-block']) !!}
{!! Form::close() !!}
src/views/show.blade.php
View file @
31a56d91
...
@@ -41,6 +41,63 @@
...
@@ -41,6 +41,63 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 offset-1">
<div class="box">
<div class="box-header dark">
<b>Bitacora de seguimiento</b>
<span>
<a class="btn btn-sm btn-default" data-target="#m-a-a" data-toggle="modal" href="#" ui-target="#animate" ui-toggle-class="zoom">
Agregar seguimiento
</a>
</span>
</div>
<div class="box-body">
@if($interested->tracings()->count() > 0)
<ul class="timeline">
@foreach( $interested->tracings as $comment)
<li class="tl-item">
<div class="tl-wrap b-primary">
<span class="tl-date text-muted">{{$comment->created_at}}</span>
<div class="tl-content box-color text-color w-xl w-auto-xs">
<span class="arrow b-white left pull-top"></span>
<div class="text-lt p-x m-b-sm">
{{$comment->type}}
</div>
<div class="p-a b-t b-light">
{{$comment->detail}}
</div>
</div>
</div>
</li>
@endforeach
</ul>
@else
<p>No se han agregado registros</p>
@endif
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade animate" data-backdrop="true" id="m-a-a">
<div class="modal-dialog" id="animate">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar seguimiento</h5>
</div>
<div class="modal-body text-center p-lg">
@include('
crm
::
form
-
bitacora
'
)
</
div
>
</
div
>
</
div
>
</
div
>
@
endsection
@
endsection
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment