Guest book

This commit is contained in:
Amritanshu 2019-06-25 17:13:56 +05:30
parent 7b08fe611f
commit 87076d9c00
3 changed files with 8 additions and 7 deletions

View File

@ -12,7 +12,7 @@ def save(request):
json = request.json_body
company = json['company'].strip() if json['company'] is not None else ''
name = json['name'].strip()
phone = str(json['phone'])
phone = json['phone']
address = json['address'].strip()
customer = request.dbsession.query(Customer).filter(Customer.phone == phone).first()
if customer is None:

View File

@ -50,11 +50,13 @@ export class GuestBookDetailComponent implements OnInit, AfterViewInit {
showItem(item: GuestBook) {
this.item = item;
this.form.get('company').setValue(item.company);
this.form.get('name').setValue(item.name);
this.form.get('phone').setValue(item.phone);
this.form.get('pax').setValue('' + item.pax);
this.form.get('address').setValue(item.address);
this.form.setValue({
company: item.company,
name: item.name,
phone: item.phone,
pax: '' + item.pax,
address: item.address
});
}
save() {

View File

@ -38,7 +38,6 @@ export class GuestBookListComponent implements OnInit {
).subscribe(x => {
return this.ser.list(x)
.subscribe((list: GuestBookList) => {
console.log("date changed");
this.data.next(list.list);
});
});