Fix: Open bill regex and the data sent by front-end was not compatible.
This commit is contained in:
@ -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-", "")),
|
||||
|
||||
Reference in New Issue
Block a user