managediscountcode.service.js
4.8 KB
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
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
var core_1 = require("@angular/core");
//import { HttpClient, HttpParams, HttpRequest} from "@angular/common/http";
var http_1 = require("@angular/http");
require("rxjs/add/operator/map");
require("rxjs/add/operator/catch");
require("rxjs/add/observable/throw");
require("rxjs/add/operator/do");
var Observable_1 = require("rxjs/Observable");
var global_1 = require("../../Shared/global");
var ManageDiscountCodeService = /** @class */ (function () {
function ManageDiscountCodeService(http, commonService) {
this.http = http;
this.commonService = commonService;
}
//public GetUserById(Id: any): Observable<User> {
// return this.http.request<User>(
// 'GET',
// 'http://192.168.86.13:92/API/Api/Users/' + Id);
//}
//GetUserByLoginIdPassword(LoginId: string, Password: string): Observable<User> {
// return this.http.request<User>(
// 'GET',
// 'http://192.168.86.13:92/API/Api/Users/{LoginId=' + LoginId + '&Password=' + Password + '}');
//}
//UpdateProfile(UserObj: User): Observable<any> {
// return this.http.request<any>(
// 'POST',
// 'http://192.168.86.13:92/API/Api/Users/UpdateProfile',
// {
// body: UserObj
// });
//}
ManageDiscountCodeService.prototype.GetDiscountCodes = function (obj) {
var _this = this;
if (obj.startDate == '') {
obj.startDate = '1/1/1';
}
if (obj.endDate == '') {
obj.endDate = '1/1/9999';
}
return this.http.get(this.commonService.resourceBaseUrl + "/api/GetDiscountCodes?discountCode="
+ obj.discountCode + "&startDate=" + obj.startDate + "&endDate=" + obj.endDate)
.map(this.extractData)
.catch(function (res) { return _this.handleError(res); });
};
ManageDiscountCodeService.prototype.InsertDiscountCode = function (obj) {
var _this = this;
//let options = new RequestOptions({ headers: this.headers });
var jsonData = { 'id': obj.userId, 'newPassword': obj.newPassword };
console.log(obj);
var headers = new http_1.Headers({
'Content-Type': 'application/json'
});
return this.http.post(this.commonService.resourceBaseUrl + "/api/ChangeUserPassword", JSON.stringify(jsonData), { headers: headers })
.map(this.extractData)
.catch(function (res) { return _this.handleError(res); });
};
ManageDiscountCodeService.prototype.UpdateDiscountCode = function (obj) {
var _this = this;
//let options = new RequestOptions({ headers: this.headers });
var jsonData = { 'id': obj.userId, 'newPassword': obj.newPassword };
console.log(obj);
var headers = new http_1.Headers({
'Content-Type': 'application/json'
});
return this.http.post(this.commonService.resourceBaseUrl + "/api/ChangeUserPassword", JSON.stringify(jsonData), { headers: headers })
.map(this.extractData)
.catch(function (res) { return _this.handleError(res); });
};
ManageDiscountCodeService.prototype.extractData = function (res) {
//debugger;
var body = res.json();
return body;
};
ManageDiscountCodeService.prototype.handleError = function (error) {
// In a real world app, we might use a remote logging infrastructure
// We'd also dig deeper into the error to get a better message
var errMsg = (error.message) ? error.message :
error.status ? error.status + " - " + error.statusText : 'Server error';
console.error(errMsg); // log to console instead
return Observable_1.Observable.throw(errMsg);
};
ManageDiscountCodeService = __decorate([
core_1.Injectable(),
__metadata("design:paramtypes", [http_1.Http, global_1.GlobalService])
], ManageDiscountCodeService);
return ManageDiscountCodeService;
}());
exports.ManageDiscountCodeService = ManageDiscountCodeService;
//# sourceMappingURL=managediscountcode.service.js.map