Fix: Open bill regex and the data sent by front-end was not compatible.

This commit is contained in:
Amritanshu Agrawal 2021-06-14 07:40:43 +05:30
parent 83aa47b33a
commit d9a6c5d20f
3 changed files with 9 additions and 11 deletions

View File

@ -40,10 +40,10 @@ def from_bill(
):
with SessionFuture() as db:
query = select(Voucher)
if re.compile(r"^\d{2,}-\d{4}$").match(id_):
query = query.where(
Voucher.bill_id == int(id_.replace("-", "")), Voucher.voucher_type == VoucherType.REGULAR_BILL
)
if re.compile(r"^\d{1,3}-\d{1,4}$").match(id_):
s, n = id_.split("-")
i = int(s * 10000) + int(n)
query = query.where(Voucher.bill_id == i, Voucher.voucher_type == VoucherType.REGULAR_BILL)
elif re.compile(r"^K-\d+$").match(id_):
query = query.where(
Voucher.kot_id == int(id_.replace("K-", "")),

View File

@ -21,11 +21,9 @@ export class SettingsService {
setPrefillCustomerDiscount(value: boolean): Observable<boolean> {
const url = '/api/settings/prefill-customer-discount';
return this.http
.post<{ value: boolean }>(url, { value: value })
.pipe(
map((x) => x.value),
catchError(this.log.handleError(serviceName, 'setPrefillCustomerDiscount')),
) as Observable<boolean>;
return this.http.post<{ value: boolean }>(url, { value: value }).pipe(
map((x) => x.value),
catchError(this.log.handleError(serviceName, 'setPrefillCustomerDiscount')),
) as Observable<boolean>;
}
}

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
cd "$parent_path/bookie" || exit
npx prettier --write src/
npx prettier --write src/app
npx ng lint --fix
cd "$parent_path/barker" || exit
isort barker