Initial commit

This commit is contained in:
Senad Uka
2018-06-11 11:09:35 +02:00
commit ed7df7b11f
1954 changed files with 483354 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<button type="button"
id="set-interest-rate-btn"
subModule="setInterestRate"
class="btn btn-default"
ng-click="setSubModule($event)">Interest rate</button>
<button type="button"
id="set-discount-for-customers-btn"
subModule="setCustomersDiscount"
class="btn btn-default"
ng-click="setSubModule($event)">Customers discount</button>
<div class="row">
<div class="col-sm-12"
id="set-interest-rate-layer"
ng-if="isSubmoduleVisible('setInterestRate')">
<h3>Set interest rate</h3>
<set-interest-rate ng-controller="setInterestRateCtrl" ng-init="getInterestRate()"></set-interest-rate>
</div>
</div>
<div class="row">
<div class="col-sm-12"
id="set-customers-discount-layer"
ng-if="isSubmoduleVisible('setCustomersDiscount')">
<h3>Set customers discount</h3>
<set-customers-discount ng-controller="setCustomersDiscountCtrl" ng-init="getCustomersAndDiscount()"></set-customers-discount>
</div>
</div>