-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
152 lines (106 loc) · 3.64 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
** Angular app for the invoice generation screen
** Author : X.Villamuera
** date : 10/2014
*/
'use strict'; //for compatibility but also js cleaniless
//declaration of the main module of the angular App
var app = angular.module('myApp',['ui.sortable','ngAnimate','ngRoute','ui.router']);
app.value("appTitle","iCompexp Invoice generator");
//add a first controller
app.controller('InvoiceCtrl', ['$scope','$state', function($scope,$state) {
//$scope.double = function(value) { return value * 2; };
$scope.invrows = [{}];
$scope.invrows.tax = [{}];
$scope.addInvoiceRow = function() {
$scope.invrows.push({});
};
$scope.deleteInvoiceRow = function(index) {
$scope.invrows.splice(index,1);
console.log("delete "+index)
};
$scope.getTotalGross = function() {
var total = 0;
for(var i = 0; i < $scope.invrows.length; i++)
{ var item = $scope.invrows[i];
total += (item.price * item.quantity) + ((item.price * item.quantity) * item.tax) ;
}
return total;
};
$scope.getTotalTax = function() {
var total = 0;
for(var i = 0; i < $scope.invrows.length; i++)
{ var item = $scope.invrows[i];
total += ((item.price * item.quantity) * item.tax);
}
return total;
};
$scope.getTotalNet = function() {
var total = 0;
for(var i = 0; i < $scope.invrows.length; i++)
{ var item = $scope.invrows[i];
total += (item.price * item.quantity);
}
return total;
};
//Form Submission
$scope.submit = function () {
$state.go('preview');
}
}]);//end controller InvController
app.controller('PreviewCtrl', ['$scope','$state', function($scope,$state) {
}
]);// end preview controller
//App routing
// configure our routes
app.config(function($routeProvider) {
$routeProvider
// route for the home page
.when('/preview', {
templateUrl : 'partials/preview.html',
controller : 'InvoiceCtrl'
});
});
// implementing UI routing
app.config(function($stateProvider, $urlRouterProvider) {
// $urlRouterProvider.otherwise('/home');
$stateProvider
// HOME STATES AND NESTED VIEWS ========================================
.state('preview', {
url: "/preview",
templateUrl: "partials/preview.html" });
});
//Some general directives
angular.module('myApp').directive('ngReallyClick', [function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
element.bind('click', function() {
var message = attrs.ngReallyMessage;
if (message && confirm(message)) {
scope.$apply(attrs.ngReallyClick);
}
});
}
}
}]);
// numbers only
app.directive('numbersOnly', function () {
return {
require: 'ngModel',
link: function (scope, element, attr, ngModelCtrl) {
function fromUser(text) {
if (text) {
var transformedInput = text.replace(/[^-?0-9.0-9]/g, '');
if (transformedInput !== text) {
ngModelCtrl.$setViewValue(transformedInput);
ngModelCtrl.$render();
}
return transformedInput;
}
return undefined;
}
ngModelCtrl.$parsers.push(fromUser);
}
};
});