Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15076 | Rev 15134 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15076 Rev 15127
Línea 1... Línea 1...
1
<?php 
1
<?php
-
 
2
 
2
use LeadersLinked\Model\CompanyService;
3
use LeadersLinked\Model\CompanyService;
3
use LeadersLinked\Model\Company;
4
use LeadersLinked\Model\Company;
Línea 4... Línea 5...
4
 
5
 
5
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
6
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
Línea 574... Línea 575...
574
 
575
 
575
    });
576
    });
576
JS;
577
JS;
577
$this->inlineScript()->captureEnd();
578
$this->inlineScript()->captureEnd();
578
?>
-
 
Línea -... Línea 579...
-
 
579
?>
579
  
580
 
580
 
581
 
581
			
582
 
582
<!-- Content Header (Page header) -->
583
<!-- Content Header (Page header) -->
583
<section class="content-header">
584
<section class="content-header">
584
	<div class="container-fluid">
585
    <div class="container-fluid">
585
    	<div class="row mb-2">
586
        <div class="row mb-2">
586
        	<div class="col-sm-12">
587
            <div class="col-sm-12">
587
            	<h1>LABEL_COMPANIES</h1>
588
                <h1>LABEL_COMPANIES</h1>
588
			</div>
589
            </div>
589
		</div>
590
        </div>
Línea 590... Línea 591...
590
	</div><!-- /.container-fluid -->
591
    </div><!-- /.container-fluid -->
591
</section>
592
</section>
592
 
593
 
593
<section class="content">
594
<section class="content">
594
	<div class="container-fluid">
595
    <div class="container-fluid">
595
		<div class="row">
596
        <div class="row">
596
			<div class="col-md-12 col-sm-12">
597
            <div class="col-md-12 col-sm-12">
597
				<form name="form-filter" id="form-filter">
598
                <form name="form-filter" id="form-filter">
598
    				<div class="form-group">
599
                    <div class="form-group">
599
    					<label for="status">LABEL_STATUS</label>
600
                        <label for="status">LABEL_STATUS</label>
600
    					<select id="status" name="status" class="form-control">
601
                        <select id="status" name="status" class="form-control">
601
    						<option value="">LABEL_ALL</option>
602
                            <option value="">LABEL_ALL</option>
602
    						<option value="<?php echo Company::STATUS_PENDING ?>">LABEL_PENDING</option>
603
                            <option value="<?php echo Company::STATUS_PENDING ?>">LABEL_PENDING</option>
603
    						<option value="<?php echo Company::STATUS_ACTIVE ?>">LABEL_ACTIVE</option>
604
                            <option value="<?php echo Company::STATUS_ACTIVE ?>">LABEL_ACTIVE</option>
604
    						<option value="<?php echo Company::STATUS_INACTIVE ?>">LABEL_INACTIVE</option>
605
                            <option value="<?php echo Company::STATUS_INACTIVE ?>">LABEL_INACTIVE</option>
605
    						<option value="<?php echo Company::STATUS_DELETED ?>">LABEL_DELETED</option>
606
                            <option value="<?php echo Company::STATUS_DELETED ?>">LABEL_DELETED</option>
606
    						<option value="<?php echo Company::STATUS_REJECTED ?>">LABEL_REJECTED</option>
607
                            <option value="<?php echo Company::STATUS_REJECTED ?>">LABEL_REJECTED</option>
607
    					</select>
608
                        </select>
608
    				</div>
609
                    </div>
609
    			</form>
610
                </form>
610
			</div>
611
            </div>
611
		</div>
612
        </div>
612
    	<div class="row">
613
        <div class="row">
613
        	<div class="col-12">
614
            <div class="col-12">
614
				<div class="card">     
615
                <div class="card">
615
					<div class="card-body">
616
                    <div class="card-body">
616
        	    		<table id="gridTable" class="table table-bordered table-hover">
617
                        <table id="gridTable" class="table table-bordered table-hover">
617
                      		<thead>
618
                            <thead>
618
        						<tr>
619
                                <tr>
619
                                	<th style="width: 30%">LABEL_NAME</th>
620
                                    <th style="width: 30%">LABEL_NAME</th>
620
                                  	<th style="width: 30%">LABEL_DETAILS</th>
621
                                    <th style="width: 30%">LABEL_DETAILS</th>
621
                                  	<th style="width: 30%">LABEL_SECURITY</th>
622
                                    <th style="width: 30%">LABEL_SECURITY</th>
622
                                  	<th style="width: 10%">LABEL_ACTIONS</th>
623
                                    <th style="width: 10%">LABEL_ACTIONS</th>
623
                                </tr>
624
                                </tr>
624
                       		</thead>
625
                            </thead>
625
                         	<tbody>
626
                            <tbody>
626
                         	</tbody>
627
                            </tbody>
627
                    	</table>
628
                        </table>
628
                   	</div>
629
                    </div>
629
                   	<div class="card-footer clearfix">
630
                    <div class="card-footer clearfix">
630
                   		<div style="float:right;">
631
                        <div style="float:right;">
631
							<button type="button" class="btn btn-sm btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
632
                            <button type="button" class="btn btn-sm btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
632
						</div>
633
                        </div>
633
                 	</div>
634
                    </div>
634
          		</div>
635
                </div>
635
           	</div>     
636
            </div>
Línea 636... Línea 637...
636
        </div>          
637
        </div>
637
 	</div>
638
    </div>
638
</section>
639
</section>
639
 
640
 
Línea 640... Línea 641...
640
<!-- The Modal -->
641
<!-- The Modal -->
641
<div class="modal" id="modalServices">
642
<div class="modal" id="modalServices">
642
	<div class="modal-dialog  modal-xl">
643
    <div class="modal-dialog  modal-xl">
643
    	<div class="modal-content">
644
        <div class="modal-content">
644
 
645
 
Línea 645... Línea 646...
645
            <!-- Modal Header -->
646
            <!-- Modal Header -->
646
      		<div class="modal-header">
647
            <div class="modal-header">
647
        		<h4 class="modal-title">LABEL_SERVICES</h4>
648
                <h4 class="modal-title">LABEL_SERVICES</h4>
648
        		<button type="button" class="close" data-dismiss="modal">&times;</button>
649
                <button type="button" class="close" data-dismiss="modal">&times;</button>
649
      		</div>
650
            </div>
650
 
651
 
651
            <!-- Modal body -->
652
            <!-- Modal body -->
652
      		<div class="modal-body">
653
            <div class="modal-body">
653
				<form name="form-services" id="form-services">
654
                <form name="form-services" id="form-services">
654
 	    			<table id="table-services" class="table table-bordered table-hover">
655
                    <table id="table-services" class="table table-bordered table-hover">
655
         				<thead>
656
                        <thead>
656
        					<tr>
657
                            <tr>
657
                        		<th>LABEL_NAME</th>
658
                                <th>LABEL_NAME</th>
658
                            	<th>LABEL_STATUS</th>
659
                                <th>LABEL_STATUS</th>
659
                            	<th>LABEL_PAID_FROM</th>
660
                                <th>LABEL_PAID_FROM</th>
660
                               	<th>LABEL_PAID_TO</th>
661
                                <th>LABEL_PAID_TO</th>
661
                           	</tr>
662
                            </tr>
662
                     	</thead>
663
                        </thead>
663
                     	<tbody>
664
                        <tbody>
664
                     	</tbody>
665
                        </tbody>
665
                 	</table>
666
                    </table>
666
 
667
 
667
 
668
 
668
								
669
 
669
            		<div class="form-group">
670
                    <div class="form-group">
670
               			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
671
                        <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
671
                		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
672
                        <button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
672
           			</div>
673
                    </div>
Línea 673... Línea 674...
673
     			</form>
674
                </form>
674
      		</div>
675
            </div>
675
 
676
 
676
    	</div>
677
        </div>
Línea 677... Línea 678...
677
	</div>
678
    </div>
678
</div> 
679
</div>
679
 
680
 
680
 
681
 
681
<!-- The Modal -->
682
<!-- The Modal -->
Línea 682... Línea 683...
682
<div class="modal" id="modalRoles">
683
<div class="modal" id="modalRoles">
683
	<div class="modal-dialog  modal-xl">
684
    <div class="modal-dialog  modal-xl">
684
    	<div class="modal-content">
685
        <div class="modal-content">
685
 
686
 
686
            <!-- Modal Header -->
687
            <!-- Modal Header -->
687
      		<div class="modal-header">
688
            <div class="modal-header">
688
        		<h4 class="modal-title">LABEL_ROLES</h4>
689
                <h4 class="modal-title">LABEL_ROLES</h4>
689
        		<button type="button" class="close" data-dismiss="modal">&times;</button>
690
                <button type="button" class="close" data-dismiss="modal">&times;</button>
690
      		</div>
691
            </div>
691
 
692
 
692
            <!-- Modal body -->
693
            <!-- Modal body -->
693
      		<div class="modal-body">
694
            <div class="modal-body">
694
				<form name="form-roles" id="form-roles">
695
                <form name="form-roles" id="form-roles">
695
 	    			<table id="table-roles" class="table table-bordered table-hover">
-
 
696
         				<thead>
696
                    <table id="table-roles" class="table table-bordered table-hover">
697
        					<tr>
697
                        <thead>
698
                        		<th>LABEL_NAME</th>
-
 
699
                            	<th>LABEL_ACTIVE</th>
-
 
700
                           	</tr>
-
 
701
                     	</thead>
-
 
702
                     	<tbody>
-
 
703
                     	</tbody>
-
 
Línea -... Línea 698...
-
 
698
                            <tr>
-
 
699
                                <th>LABEL_NAME</th>
-
 
700
                                <th>LABEL_ACTIVE</th>
-
 
701
                            </tr>
-
 
702
                        </thead>
-
 
703
                        <tbody>
-
 
704
                        </tbody>
704
                 	</table>
705
                    </table>
705
 
706
 
706
 
707
 
Línea 707... Línea 708...
707
								
708
 
708
            		<div class="form-group">
709
                    <div class="form-group">
709
               			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
710
                        <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
710
                		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
711
                        <button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
Línea 711... Línea 712...
711
           			</div>
712
                    </div>
712
     			</form>
713
                </form>
713
      		</div>
714
            </div>
714
 
715
 
715
    	</div>
716
        </div>
Línea 716... Línea 717...
716
	</div>
717
    </div>
717
</div>
718
</div>
718
 
719
 
719
 
-
 
720
<!-- The Modal -->
-
 
721
<div class="modal" id="modalEdit">
-
 
722
	<div class="modal-dialog  modal-xl">
-
 
723
    	<div class="modal-content">
-
 
724
 
-
 
725
            <!-- Modal Header -->
-
 
726
      		<div class="modal-header">
-
 
727
        		<h4 class="modal-title">LABEL_EDIT</h4>
-
 
728
        		<button type="button" class="close" data-dismiss="modal">&times;</button>
-
 
729
      		</div>
-
 
730
 
-
 
731
            <!-- Modal body -->
-
 
732
      		<div class="modal-body">
-
 
733
				<form name="form-edit" id="form-edit">
-
 
734
 
-
 
735
					<div class="form-group">
-
 
736
                    	<label for="status">LABEL_STATUS</label>
-
 
737
                    	<select id="status" name="status" class="form-control">
-
 
738
                    		<option value="<?php echo Company::STATUS_ACTIVE ?>">LABEL_ACTIVE</option>
-
 
739
                    		<option value="<?php echo Company::STATUS_INACTIVE ?>">LABEL_INACTIVE</option>
-
 
740
                    		<option value="<?php echo Company::STATUS_DELETED ?>">LABEL_DELETED</option>
-
 
741
                    		<option value="<?php echo Company::STATUS_PENDING ?>">LABEL_PENDING</option>
-
 
742
                    		<option value="<?php echo Company::STATUS_REJECTED ?>">LABEL_REJECTED</option>
-
 
743
                    	</select>
-
 
744
					</div>
-
 
745
					<div class="form-group">
-
 
746
                    	<label for="user_uuid">LABEL_CREATED_BY</label>
-
 
747
                    	<select id="user_uuid" name="user_uuid" class="form-control">
-
 
Línea -... Línea 720...
-
 
720
 
-
 
721
<!-- The Modal -->
-
 
722
<div class="modal" id="modalEdit">
-
 
723
    <div class="modal-dialog  modal-xl">
-
 
724
        <div class="modal-content">
-
 
725
 
-
 
726
            <!-- Modal Header -->
-
 
727
            <div class="modal-header">
-
 
728
                <h4 class="modal-title">LABEL_EDIT</h4>
-
 
729
                <button type="button" class="close" data-dismiss="modal">&times;</button>
-
 
730
            </div>
-
 
731
 
-
 
732
            <!-- Modal body -->
-
 
733
            <div class="modal-body">
-
 
734
                <form name="form-edit" id="form-edit">
-
 
735
 
-
 
736
                    <div class="form-group">
-
 
737
                        <label for="status">LABEL_STATUS</label>
-
 
738
                        <select id="status" name="status" class="form-control">
-
 
739
                            <option value="<?php echo Company::STATUS_ACTIVE ?>">LABEL_ACTIVE</option>
-
 
740
                            <option value="<?php echo Company::STATUS_INACTIVE ?>">LABEL_INACTIVE</option>
-
 
741
                            <option value="<?php echo Company::STATUS_DELETED ?>">LABEL_DELETED</option>
-
 
742
                            <option value="<?php echo Company::STATUS_PENDING ?>">LABEL_PENDING</option>
-
 
743
                            <option value="<?php echo Company::STATUS_REJECTED ?>">LABEL_REJECTED</option>
-
 
744
                        </select>
-
 
745
                    </div>
-
 
746
                    <div class="form-group">
-
 
747
                        <label for="user_uuid">LABEL_CREATED_BY</label>
748
                    		
748
                        <select id="user_uuid" name="user_uuid" class="form-control">