appointment
appointment_to_exchange
async
appointment_to_exchange(
order_ids: str,
user: Annotated[
SotransOIDCUserModel,
Depends(
get_current_user(
required_role_names=[company_logistician]
)
),
],
order: OrderUpdateModel,
) -> MultiselectError
Accepts start_price(required) and assigned. Must be finished with auction_end_time
Source code in api/endpoints/orders/appointment.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | |