**Commit Message:**
Enhance app with active pgroup handling and token updates Added active pgroup state management across the app for user-specific settings. Improved token handling with decoding, saving user data, and setting OpenAPI authorization. Updated components, API calls, and forms to support dynamic pgroup selection and user-specific features.
This commit is contained in:
@ -110,36 +110,56 @@ contacts = [
|
||||
return_addresses = [
|
||||
Address(
|
||||
id=1,
|
||||
street="123 Hobbiton St",
|
||||
city="Shire",
|
||||
pgroups="p20000, p20002",
|
||||
status="active",
|
||||
house_number="123",
|
||||
street="Hobbiton St",
|
||||
city="Hobbitbourg",
|
||||
state="Shire",
|
||||
zipcode="12345",
|
||||
country="Middle Earth",
|
||||
),
|
||||
Address(
|
||||
id=2,
|
||||
street="456 Rohan Rd",
|
||||
pgroups="p20000, p20001",
|
||||
status="active",
|
||||
house_number="456",
|
||||
street="Rohan Rd",
|
||||
city="Edoras",
|
||||
state="Rohan",
|
||||
zipcode="67890",
|
||||
country="Middle Earth",
|
||||
),
|
||||
Address(
|
||||
id=3,
|
||||
street="789 Greenwood Dr",
|
||||
pgroups="p20001, p20002",
|
||||
status="active",
|
||||
house_number="789",
|
||||
street="Greenwood Dr",
|
||||
city="Mirkwood",
|
||||
state="Greenwood",
|
||||
zipcode="13579",
|
||||
country="Middle Earth",
|
||||
),
|
||||
Address(
|
||||
id=4,
|
||||
street="321 Gondor Ave",
|
||||
pgroups="p20001, p20002, p20003",
|
||||
status="active",
|
||||
house_number="321",
|
||||
street="Gondor Ave",
|
||||
city="Minas Tirith",
|
||||
state="Gondor",
|
||||
zipcode="24680",
|
||||
country="Middle Earth",
|
||||
),
|
||||
Address(
|
||||
id=5,
|
||||
street="654 Falgorn Pass",
|
||||
pgroups="p20004, p20005",
|
||||
status="active",
|
||||
house_number="654",
|
||||
street="Falgorn Pass",
|
||||
city="Rivendell",
|
||||
state="Rivendell",
|
||||
zipcode="11223",
|
||||
country="Middle Earth",
|
||||
),
|
||||
@ -234,11 +254,11 @@ dewars = [
|
||||
|
||||
# Define proposals
|
||||
proposals = [
|
||||
Proposal(id=1, number="p20000"),
|
||||
Proposal(id=2, number="p20001"),
|
||||
Proposal(id=3, number="p20002"),
|
||||
Proposal(id=4, number="p20003"),
|
||||
Proposal(id=5, number="p20004"),
|
||||
Proposal(id=1, number="202400125"),
|
||||
Proposal(id=2, number="202400235"),
|
||||
Proposal(id=3, number="202400237"),
|
||||
Proposal(id=4, number="202400336"),
|
||||
Proposal(id=5, number="202400255"),
|
||||
]
|
||||
|
||||
# Define shipment specific dewars
|
||||
|
Reference in New Issue
Block a user