Merge branch 'master' of https://bitbucket.org/venbainformationtechnology/apollosc
This commit is contained in:
commit
61aeefb73f
10
e2e/app/paymentmodule/paymentmodule-routing.module.ts
Normal file
10
e2e/app/paymentmodule/paymentmodule-routing.module.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
import { Routes, RouterModule } from '@angular/router';
|
||||||
|
|
||||||
|
const routes: Routes = [];
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [RouterModule.forChild(routes)],
|
||||||
|
exports: [RouterModule]
|
||||||
|
})
|
||||||
|
export class PaymentmoduleRoutingModule { }
|
||||||
13
e2e/app/paymentmodule/paymentmodule.module.spec.ts
Normal file
13
e2e/app/paymentmodule/paymentmodule.module.spec.ts
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import { PaymentmoduleModule } from './paymentmodule.module';
|
||||||
|
|
||||||
|
describe('PaymentmoduleModule', () => {
|
||||||
|
let paymentmoduleModule: PaymentmoduleModule;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
paymentmoduleModule = new PaymentmoduleModule();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create an instance', () => {
|
||||||
|
expect(paymentmoduleModule).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
13
e2e/app/paymentmodule/paymentmodule.module.ts
Normal file
13
e2e/app/paymentmodule/paymentmodule.module.ts
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
|
||||||
|
import { PaymentmoduleRoutingModule } from './paymentmodule-routing.module';
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [
|
||||||
|
CommonModule,
|
||||||
|
PaymentmoduleRoutingModule
|
||||||
|
],
|
||||||
|
declarations: []
|
||||||
|
})
|
||||||
|
export class PaymentmoduleModule { }
|
||||||
@ -85,19 +85,15 @@ export class AppSidebar {
|
|||||||
url: '/masters/statusmaster',
|
url: '/masters/statusmaster',
|
||||||
icon: 'fa fa-bullseye'
|
icon: 'fa fa-bullseye'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'Document',
|
|
||||||
url: '/masters/DocumentMaster',
|
|
||||||
icon: 'fa fa-file-o'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'Fees',
|
name: 'Fees',
|
||||||
url: '/masters/FeesMaster',
|
url: '/masters/FeesMaster',
|
||||||
icon: 'fa fa-money'
|
icon: 'fa fa-money'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Form',
|
name: 'Document',
|
||||||
url: '/masters/FormMaster',
|
url: '/masters/DocumentMaster',
|
||||||
icon: 'fa fa-file'
|
icon: 'fa fa-file'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@ -181,14 +181,14 @@
|
|||||||
<form action="" method="post" class="form-horizontal">
|
<form action="" method="post" class="form-horizontal">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<div class="col-md-offset-2 col-md-4 ">
|
<div class=" col-md-4 ">
|
||||||
<label class="col-md-6 form-control-label" for="select">Select University<span class="required"> *</span></label>
|
<label class="form-control-label" for="select">Select University<span class="required"> *</span></label>
|
||||||
|
|
||||||
<select id="select" name="select" class="form-control">
|
<select id="select" name="select" class="form-control">
|
||||||
<option *ngFor="let i of university">{{i}}</option>
|
<option *ngFor="let i of university">{{i}}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-offset-2 col-md-4 ">
|
<div class=" col-md-4 ">
|
||||||
<label for="company">Batch Name<span class="required"> *</span></label>
|
<label for="company">Batch Name<span class="required"> *</span></label>
|
||||||
<input type="text" class="form-control" id="company" placeholder="Enter Batch Name">
|
<input type="text" class="form-control" id="company" placeholder="Enter Batch Name">
|
||||||
</div>
|
</div>
|
||||||
@ -203,7 +203,7 @@
|
|||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<div class="col-md-4 ">
|
<div class="col-md-4 ">
|
||||||
<label for="company">Batch Date<span class="required"> *</span></label>
|
<label for="company">Batch Date<span class="required"> *</span></label>
|
||||||
<input type="date" class="form-control" id="date" placeholder="Enter Batch Date" onchange="mydate1();">
|
<input type="text" class="form-control" id="date" placeholder="dd/mm/yyyy" >
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<label for="company">Active/De-Active<span class="required"> *</span></label>
|
<label for="company">Active/De-Active<span class="required"> *</span></label>
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
<span *ngIf="show" class="backToList">
|
<span *ngIf="show" class="backToList">
|
||||||
|
|
||||||
<a (click)="show = !show;" tooltip="Go to listing">Back to List</a>
|
<a (click)="show = !show;" tooltip="Go to listing">Back to List</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
<div class="col-lg-12" *ngIf="!show">
|
<div class="col-lg-12" *ngIf="!show">
|
||||||
|
|
||||||
<!--/.row-->
|
<!--/.row-->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<!--/.col-->
|
<!--/.col-->
|
||||||
@ -12,14 +12,15 @@
|
|||||||
<!-- Nav tabs -->
|
<!-- Nav tabs -->
|
||||||
<tabset>
|
<tabset>
|
||||||
<tab>
|
<tab>
|
||||||
<ng-template tabHeading> View Document </ng-template>
|
<ng-template tabHeading> View Document <span class="badge badge-pill badge-success"></span></ng-template>
|
||||||
<!--/.row-->
|
<!--/.row-->
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<i class="fa fa-align-justify"></i>Document List
|
<i class="fa fa-align-justify"></i>Document List
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
|
||||||
<div class="row">
|
<div class="card-body">
|
||||||
|
<div class="row">
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<div class="input-prepend input-group">
|
<div class="input-prepend input-group">
|
||||||
<span class="input-group-addon">
|
<span class="input-group-addon">
|
||||||
@ -29,66 +30,55 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-12 col-xs-12">
|
<div class="col-lg-12 col-xs-12">
|
||||||
<table class="table table-bordered">
|
<table class="table table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Document Name</th>
|
<th>DocumentName</th>
|
||||||
<th>Document Description</th>
|
<th>Description</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
<th>Action</th>
|
<th>Action</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>SF</td>
|
<td>Transfer certificate</td>
|
||||||
<td>Semester Fess Document</td>
|
<td>Transfer certificate Doc</td>
|
||||||
<td> <span class="badge badge-danger">Inactive</span></td>
|
<td>
|
||||||
<td>
|
<span class="badge badge-success">Active</span>
|
||||||
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i> |
|
</td>
|
||||||
<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(emp)"></i>
|
<td>
|
||||||
|
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i>
|
||||||
</td>
|
</td>
|
||||||
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td>Provisional Certificate</td>
|
||||||
<td>MF</td>
|
<td>Provisional Certificate Doc</td>
|
||||||
<td>Marksheet Document</td>
|
|
||||||
<td> <span class="badge badge-danger">Inactive</span></td>
|
<td>
|
||||||
|
<span class="badge badge-success">Active</span>
|
||||||
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i> |
|
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i>
|
||||||
<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(emp)"></i>
|
|
||||||
</td>
|
</td>
|
||||||
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td>Degree Certificate</td>
|
||||||
<td>EF</td>
|
<td>Degree Certificate Doc</td>
|
||||||
<td>Exam Fees</td>
|
|
||||||
<td> <span class="badge badge-success">Active</span></td>
|
<td>
|
||||||
|
<span class="badge badge-danger">Inactive</span>
|
||||||
<td>
|
</td>
|
||||||
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i> |
|
<td>
|
||||||
<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(emp)"></i>
|
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td>HT</td>
|
|
||||||
<td>Hall Ticket</td>
|
</tbody>
|
||||||
<td>
|
|
||||||
<span class="badge badge-success">Active</span></td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i> |
|
|
||||||
<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(emp)"></i>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</tbody>
|
|
||||||
</table>
|
</table>
|
||||||
<ul class="pagination">
|
<ul class="pagination">
|
||||||
<li class="page-item"><a class="page-link" href="#">Prev</a></li>
|
<li class="page-item"><a class="page-link" href="#">Prev</a></li>
|
||||||
@ -100,7 +90,7 @@
|
|||||||
<li class="page-item"><a class="page-link" href="#">4</a></li>
|
<li class="page-item"><a class="page-link" href="#">4</a></li>
|
||||||
<li class="page-item"><a class="page-link" href="#">Next</a></li>
|
<li class="page-item"><a class="page-link" href="#">Next</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--/.col-->
|
<!--/.col-->
|
||||||
@ -109,14 +99,15 @@
|
|||||||
</tab>
|
</tab>
|
||||||
<tab>
|
<tab>
|
||||||
<ng-template tabHeading> Add Document</ng-template>
|
<ng-template tabHeading> Add Document</ng-template>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<i class="fa fa-align-justify"></i>Document
|
<i class="fa fa-align-justify"></i>Document
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form action="" method="post" class="form-horizontal">
|
<form action="" method="post" class="form-horizontal">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
|
|
||||||
<div class=" col-md-4 ">
|
<div class=" col-md-4 ">
|
||||||
<label for="company">Document Name<span class="required"> *</span></label>
|
<label for="company">Document Name<span class="required"> *</span></label>
|
||||||
<input type="text" class="form-control" id="company" placeholder="Enter Document Name">
|
<input type="text" class="form-control" id="company" placeholder="Enter Document Name">
|
||||||
@ -125,7 +116,7 @@
|
|||||||
<label for="company">Document Description<span class="required"> *</span></label>
|
<label for="company">Document Description<span class="required"> *</span></label>
|
||||||
<input type="text" class="form-control" id="company" placeholder="Document description">
|
<input type="text" class="form-control" id="company" placeholder="Document description">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<label for="company">Active/De-Active<span class="required"> *</span></label>
|
<label for="company">Active/De-Active<span class="required"> *</span></label>
|
||||||
<br>
|
<br>
|
||||||
<label class="switch switch-3d switch-primary">
|
<label class="switch switch-3d switch-primary">
|
||||||
@ -133,26 +124,24 @@
|
|||||||
<span class="switch-label"></span>
|
<span class="switch-label"></span>
|
||||||
<span class="switch-handle"></span>
|
<span class="switch-handle"></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
<div class="card-footer">
|
<div class="card-footer">
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<div class=" col-md-12" align="right">
|
<div class=" col-md-12" align="right">
|
||||||
|
|
||||||
<button type="button" class="btn btn-sm btn-success"><i class="fa fa-dot-circle-o"></i> Submit</button>
|
<button type="button" style="margin-bottom: -14px" class="btn btn-sm btn-success"><i class="fa fa-dot-circle-o"></i> Submit</button>
|
||||||
|
|
||||||
<button type="reset" class="btn btn-sm btn-danger"><i class="fa fa-ban"></i> Reset</button>
|
<button type="reset" style="margin-bottom: -14px" class="btn btn-sm btn-danger"><i class="fa fa-ban"></i> Reset</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</tab>
|
</tab>
|
||||||
</tabset>
|
</tabset>
|
||||||
</div><!--/.col-->
|
</div><!--/.col-->
|
||||||
@ -162,3 +151,9 @@
|
|||||||
<!--/.row-->
|
<!--/.row-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -85,10 +85,10 @@
|
|||||||
<table class="table table-bordered">
|
<table class="table table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>University Name</th>
|
<th>University Name</th>
|
||||||
<th>Course</th>
|
<th>Course</th>
|
||||||
<th>Document Name</th>
|
<th>Document Name</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
<th>Action</th>
|
<th>Action</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|||||||
@ -1,172 +0,0 @@
|
|||||||
<span *ngIf="show" class="backToList">
|
|
||||||
|
|
||||||
<a (click)="show = !show;" tooltip="Go to listing">Back to List</a>
|
|
||||||
|
|
||||||
</span>
|
|
||||||
<div class="col-lg-12" *ngIf="!show">
|
|
||||||
|
|
||||||
<!--/.row-->
|
|
||||||
<div class="row">
|
|
||||||
<!--/.col-->
|
|
||||||
<div class="col-md-12 mb-4">
|
|
||||||
<!-- Nav tabs -->
|
|
||||||
<tabset>
|
|
||||||
<tab>
|
|
||||||
<ng-template tabHeading> View Form <span class="badge badge-pill badge-success"></span></ng-template>
|
|
||||||
<!--/.row-->
|
|
||||||
<div class="card">
|
|
||||||
<div class="card-header">
|
|
||||||
<i class="fa fa-align-justify"></i> Form List
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="card-body">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-4">
|
|
||||||
<div class="input-prepend input-group">
|
|
||||||
<span class="input-group-addon">
|
|
||||||
<i class="fa fa-search"></i>
|
|
||||||
</span>
|
|
||||||
<input id="search" class="form-control" type="text" placeholder="search">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-lg-12 col-xs-12">
|
|
||||||
<table class="table table-bordered">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>FormName</th>
|
|
||||||
<th>Description</th>
|
|
||||||
<th>Status</th>
|
|
||||||
<th>Action</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>TC</td>
|
|
||||||
<td>Transfer certificate</td>
|
|
||||||
<td>
|
|
||||||
<span class="badge badge-success">Active</span>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i> |
|
|
||||||
<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(emp)"></i>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>PC</td>
|
|
||||||
<td>Provisional Certificate</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<span class="badge badge-success">Active</span>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i> |
|
|
||||||
<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(emp)"></i>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>DC</td>
|
|
||||||
<td>Degree Certificate</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<span class="badge badge-danger">Inactive</span>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i> |
|
|
||||||
<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(emp)"></i>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>MS</td>
|
|
||||||
<td>Mark Sheet</td>
|
|
||||||
<td>
|
|
||||||
<span class="badge badge-danger">Inactive</span>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<i class="fa fa-edit" tooltip="Edit" (click)="editEmployee()"></i> |
|
|
||||||
<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(emp)"></i>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<ul class="pagination">
|
|
||||||
<li class="page-item"><a class="page-link" href="#">Prev</a></li>
|
|
||||||
<li class="page-item active">
|
|
||||||
<a class="page-link" href="#">1</a>
|
|
||||||
</li>
|
|
||||||
<li class="page-item"><a class="page-link" href="#">2</a></li>
|
|
||||||
<li class="page-item"><a class="page-link" href="#">3</a></li>
|
|
||||||
<li class="page-item"><a class="page-link" href="#">4</a></li>
|
|
||||||
<li class="page-item"><a class="page-link" href="#">Next</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!--/.col-->
|
|
||||||
</div>
|
|
||||||
<!--/.row-->
|
|
||||||
</tab>
|
|
||||||
<tab>
|
|
||||||
<ng-template tabHeading> Add Form</ng-template>
|
|
||||||
<div class="card">
|
|
||||||
<div class="card-header">
|
|
||||||
<i class="fa fa-align-justify"></i>Form
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<form action="" method="post" class="form-horizontal">
|
|
||||||
<div class="card-body">
|
|
||||||
<div class="form-group row">
|
|
||||||
|
|
||||||
<div class=" col-md-4 ">
|
|
||||||
<label for="company">Form Name<span class="required"> *</span></label>
|
|
||||||
<input type="text" class="form-control" id="company" placeholder="Enter Form Name">
|
|
||||||
</div>
|
|
||||||
<div class=" col-md-4 ">
|
|
||||||
<label for="company">Form Description<span class="required"> *</span></label>
|
|
||||||
<input type="text" class="form-control" id="company" placeholder="Form description">
|
|
||||||
</div>
|
|
||||||
<div class="col-md-4">
|
|
||||||
<label for="company">Active/De-Active<span class="required"> *</span></label>
|
|
||||||
<br>
|
|
||||||
<label class="switch switch-3d switch-primary">
|
|
||||||
<input type="checkbox" class="switch-input" checked>
|
|
||||||
<span class="switch-label"></span>
|
|
||||||
<span class="switch-handle"></span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<div class="card-footer">
|
|
||||||
<div class="form-group row">
|
|
||||||
<div class=" col-md-12" align="right">
|
|
||||||
|
|
||||||
<button type="button" style="margin-bottom: -14px" class="btn btn-sm btn-success"><i class="fa fa-dot-circle-o"></i> Submit</button>
|
|
||||||
|
|
||||||
<button type="reset" style="margin-bottom: -14px" class="btn btn-sm btn-danger"><i class="fa fa-ban"></i> Reset</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</tab>
|
|
||||||
</tabset>
|
|
||||||
</div><!--/.col-->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!--/.row-->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
|
|
||||||
.required{
|
|
||||||
color:red;
|
|
||||||
}
|
|
||||||
@ -1,15 +0,0 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'app-form-master',
|
|
||||||
templateUrl: './form-master.component.html',
|
|
||||||
styleUrls: ['./form-master.component.scss']
|
|
||||||
})
|
|
||||||
export class FormMasterComponent implements OnInit {
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -9,7 +9,6 @@ import { UniversityMasterComponent } from './university-master/university-master
|
|||||||
import { BatchMasterComponent } from './batch-master/batch-master.component';
|
import { BatchMasterComponent } from './batch-master/batch-master.component';
|
||||||
import { DocumentMasterComponent } from './document-master/document-master.component';
|
import { DocumentMasterComponent } from './document-master/document-master.component';
|
||||||
import { FeesMasterComponent } from './fees-master/fees-master.component';
|
import { FeesMasterComponent } from './fees-master/fees-master.component';
|
||||||
import { FormMasterComponent } from './form-master/form-master.component';
|
|
||||||
import { ExamtimeTableComponent } from './examtime-table/examtime-table.component';
|
import { ExamtimeTableComponent } from './examtime-table/examtime-table.component';
|
||||||
import { StudyMaterialComponent } from './study-material/study-material.component';
|
import { StudyMaterialComponent } from './study-material/study-material.component';
|
||||||
import { CourseMasterComponent } from './course-master/course-master.component';
|
import { CourseMasterComponent } from './course-master/course-master.component';
|
||||||
@ -60,18 +59,11 @@ const routes: Routes = [
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'BatchMaster',
|
path: 'BatchMaster',
|
||||||
component: BatchMasterComponent,
|
component: BatchMasterComponent,
|
||||||
data: {
|
data: {
|
||||||
title: 'Batch'
|
title: 'Batch'
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
path: 'DocumentMaster',
|
|
||||||
component: DocumentMasterComponent,
|
|
||||||
data: {
|
|
||||||
title: 'Document'
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'FeesMaster',
|
path: 'FeesMaster',
|
||||||
@ -81,10 +73,10 @@ const routes: Routes = [
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'FormMaster',
|
path: 'DocumentMaster',
|
||||||
component: FormMasterComponent,
|
component: DocumentMasterComponent,
|
||||||
data: {
|
data: {
|
||||||
title: 'Form'
|
title: 'Document'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@ -23,12 +23,12 @@ import { EditStudyCenterComponent } from './study-center/edit-study-center/edit-
|
|||||||
import { UniversityMasterComponent } from './university-master/university-master.component';
|
import { UniversityMasterComponent } from './university-master/university-master.component';
|
||||||
//Batch
|
//Batch
|
||||||
import { BatchMasterComponent } from './batch-master/batch-master.component';
|
import { BatchMasterComponent } from './batch-master/batch-master.component';
|
||||||
//Document
|
|
||||||
import { DocumentMasterComponent } from './document-master/document-master.component';
|
import { DocumentMasterComponent } from './document-master/document-master.component';
|
||||||
//Fees
|
//Fees
|
||||||
import { FeesMasterComponent } from './fees-master/fees-master.component';
|
import { FeesMasterComponent } from './fees-master/fees-master.component';
|
||||||
//Form
|
//Form
|
||||||
import { FormMasterComponent } from './form-master/form-master.component';
|
|
||||||
//Study
|
//Study
|
||||||
import { StudyMaterialComponent } from './study-material/study-material.component';
|
import { StudyMaterialComponent } from './study-material/study-material.component';
|
||||||
import { ExamtimeTableComponent } from './examtime-table/examtime-table.component';
|
import { ExamtimeTableComponent } from './examtime-table/examtime-table.component';
|
||||||
@ -61,9 +61,9 @@ import { StatusMasterComponent } from './status-master/status-master.component';
|
|||||||
FormListComponent,
|
FormListComponent,
|
||||||
UniversityMasterComponent,
|
UniversityMasterComponent,
|
||||||
BatchMasterComponent,
|
BatchMasterComponent,
|
||||||
DocumentMasterComponent,
|
|
||||||
FeesMasterComponent,
|
FeesMasterComponent,
|
||||||
FormMasterComponent,
|
DocumentMasterComponent,
|
||||||
StudyMaterialComponent,
|
StudyMaterialComponent,
|
||||||
ExamtimeTableComponent,
|
ExamtimeTableComponent,
|
||||||
CourseMasterComponent,
|
CourseMasterComponent,
|
||||||
|
|||||||
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3">
|
<div class="col-md-2">
|
||||||
<div class="input-prepend input-group">
|
<div class="input-prepend input-group">
|
||||||
<select id="disabledSelect" class="form-control">
|
<select id="disabledSelect" class="form-control">
|
||||||
<option value="0">From Date</option>
|
<option value="0">From Date</option>
|
||||||
@ -33,7 +33,7 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-2">
|
||||||
<div class="input-prepend input-group">
|
<div class="input-prepend input-group">
|
||||||
<select id="disabledSelect" class="form-control">
|
<select id="disabledSelect" class="form-control">
|
||||||
<option value="0">To Date</option>
|
<option value="0">To Date</option>
|
||||||
@ -41,10 +41,18 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-md-2">
|
||||||
|
<div class="input-prepend input-group">
|
||||||
|
<select id="disabledSelect" class="form-control">
|
||||||
|
<option value="0">University</option>
|
||||||
|
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<div class="input-prepend input-group">
|
<div class="input-prepend input-group">
|
||||||
<select id="disabledSelect" class="form-control">
|
<select id="disabledSelect" class="form-control">
|
||||||
<option value="0">Form ID</option>
|
<option value="0">StudyCenter</option>
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
@ -81,58 +89,64 @@
|
|||||||
|
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
||||||
<th>Date</th>
|
<th>Date</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
|
<th>University</th>
|
||||||
|
<th>Form</th>
|
||||||
<th>Debit</th>
|
<th>Debit</th>
|
||||||
<th>Credit</th>
|
<th>Credit</th>
|
||||||
<th>Balance</th>
|
<th>Balance</th>
|
||||||
|
<th>Remarks</th>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
||||||
<td>10/08/2018</td>
|
<td>10/08/2018</td>
|
||||||
|
<td>Payment Received</td>
|
||||||
|
<td>Anna Uni</td>
|
||||||
<td><a href="page-link" href="#">FormID 1</a></td>
|
<td><a href="page-link" href="#">FormID 1</a></td>
|
||||||
<td>0</td>
|
<td>0</td>
|
||||||
<td>10,000</td>
|
<td>10,000</td>
|
||||||
<td>10,000</td>
|
<td>10,000</td>
|
||||||
|
<td>Amount Received by studycenter A</td>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
||||||
<td>11/08/2018</td>
|
<td>11/08/2018</td>
|
||||||
|
<td>Fees Adjust</td>
|
||||||
|
<td>Anna Uni</td>
|
||||||
<td><a href="page-link" href="#">FormID 2</a></td>
|
<td><a href="page-link" href="#">FormID 2</a></td>
|
||||||
<td>0</td>
|
<td>0</td>
|
||||||
<td>15,000</td>
|
<td>15,000</td>
|
||||||
<td>25,000</td>
|
<td>25,000</td>
|
||||||
|
<td>Amount Adjust studycenter A</td>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
||||||
<td>12/08/2018</td>
|
<td>12/08/2018</td>
|
||||||
|
<td>Refund</td>
|
||||||
|
<td>Anna Uni</td>
|
||||||
<td><a href="page-link" href="#">FormID 3</a></td>
|
<td><a href="page-link" href="#">FormID 3</a></td>
|
||||||
<td>5000</td>
|
<td>5000</td>
|
||||||
<td>0</td>
|
<td>0</td>
|
||||||
<td>20,000</td>
|
<td>20,000</td>
|
||||||
|
<td>Amount Refund</td>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td>16/08/2018</td>
|
|
||||||
<td><a href="page-link" href="#">FormID 4</a></td>
|
|
||||||
<td>10,000</td>
|
|
||||||
<td>0</td>
|
|
||||||
<td>10,000</td>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
@ -244,8 +244,8 @@
|
|||||||
<td>Batch C</td>
|
<td>Batch C</td>
|
||||||
<td>BE</td>
|
<td>BE</td>
|
||||||
|
|
||||||
<td>0</td>
|
<td>20</td>
|
||||||
<td><input type="text" value="20"></td>
|
<td><input type="text" value="0"></td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@ -254,7 +254,7 @@
|
|||||||
<td>Batch D</td>
|
<td>Batch D</td>
|
||||||
<td>DE</td>
|
<td>DE</td>
|
||||||
|
|
||||||
<td>0</td>
|
<td>34</td>
|
||||||
<td><input type="text" value="34"></td>
|
<td><input type="text" value="34"></td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user