managediscountcode.service.js 4.8 KB
"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