fix: 行情编号改为纯数字格式(如2404140001)
This commit is contained in:
parent
0ffc10ad9a
commit
e381427138
|
|
@ -464,7 +464,7 @@ def create_information(
|
||||||
).count()
|
).count()
|
||||||
# 编号 = 日期 + 5位自然数(如 DJ2026041100001)
|
# 编号 = 日期 + 5位自然数(如 DJ2026041100001)
|
||||||
seq = count_today + 1
|
seq = count_today + 1
|
||||||
deal_no = f"DJ{today[2:]}{seq:04d}"
|
deal_no = f"{today[2:]}{seq:04d}"
|
||||||
|
|
||||||
info = Information(
|
info = Information(
|
||||||
user_id=current_user.f99_90_id,
|
user_id=current_user.f99_90_id,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue