Skip to content

Commit

Permalink
Client List
Browse files Browse the repository at this point in the history
  • Loading branch information
azatyan committed Jul 5, 2019
1 parent f555d31 commit 9a01037
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/Controller/Ria/ClientController.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

class ClientController extends Controller
{


public function updateSasCash(Request $request)
{
$em = $this->get('doctrine.orm.entity_manager');
Expand Down
3 changes: 2 additions & 1 deletion src/Mailer/TwigSwiftMailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,8 @@ public function sendCustodianWorkflowDocuments(User $ria, Workflow $workflow)
*/
private function getRiaLogo($ria_id){

// @todo: write function returning full url of uploaded RIA logo
// @todo: write function returning full url of uploaded RIA logo//rx_file_download
return '/img/logo.png';

}
}
2 changes: 1 addition & 1 deletion templates/Client/Transfer/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
{% block top_content %}
<div class="container">
<div class="row">
{{ render(controller('App\Controller\Client\TransferController:accountsList')) }}
{{ render(controller('App\\Controller\\Client\\TransferController:accountsList')) }}
</div>
</div>
{% endblock %}
Expand Down
4 changes: 3 additions & 1 deletion templates/Ria/Dashboard/clients_list.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@
{% include "/Ria/Dashboard/_tpl_clients_header.html.twig" %}
{% endblock %}
</div>
<div id="clients"></div>
<div id="clients">

</div>

</div>

Expand Down
2 changes: 2 additions & 0 deletions templates/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@
{% endblock %}

{% block javascripts %}
<script src="{{ asset('bundles/fosjsrouting/js/router.js') }}"></script>
<script src="{{ path('fos_js_routing_js', { callback: 'fos.Router.setData' }) }}"></script>
<script type="text/javascript" src="{{ asset('js/jquery.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('js/jquery/jquery-ui-1.9.2.custom.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('js/jquery/jquery.form.js') }}"></script>
Expand Down
2 changes: 2 additions & 0 deletions templates/base_demo_layout.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@
</div>

{% block javascripts %}
<script src="{{ asset('bundles/fosjsrouting/js/router.js') }}"></script>
<script src="{{ path('fos_js_routing_js', { callback: 'fos.Router.setData' }) }}"></script>
<script type="text/javascript" src="{{ asset('js/jquery.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('js/jquery/jquery-ui-1.9.2.custom.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('js/jquery/jquery.form.js') }}"></script>
Expand Down

0 comments on commit 9a01037

Please sign in to comment.