1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
use actix_web::{HttpResponse, ResponseError};
use derive_more::Display;
use serde::{Deserialize, Serialize};
use validator::Validate;

#[derive(Serialize, Deserialize, Debug, Clone,Validate)]
pub struct GetListCurrentMenuOrdersBody {
    pub menus: Vec<String>,
    pub kind: String,
    pub page_number: i32,
    pub page_count: i32,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct GetListCurrentMenuOrdersResult {
    pub list: Vec<MenuOrderAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct MenuOrderAggregation {
    pub id: Option<String>,
    pub reference: Option<String>,
    pub order_date: Option<String>,
    pub customer_informations: Option<CustomerInformationsAggregation>,
    pub customer_notes: Option<String>,
    pub order_status: Option<String>,
    pub details: Option<MenuCartAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CustomerInformationsAggregation {
    pub identifier: Option<String>,
    pub first_name: Option<String>,
    pub last_name: Option<String>,
    pub email: Option<String>,
    pub address: Option<CustomerAddressAggregation>,
    pub phone: Option<CustomerPhoneAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CustomerAddressAggregation {
    pub id: Option<String>,
    pub road_names: Option<Vec<AddressRoadNameAggregation>>,
    pub postal_code: Option<i32>,
    pub country: Option<String>,
    pub city: Option<String>,
    pub location: Option<AddressLocationAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct AddressRoadNameAggregation {
    pub id: Option<String>,
    pub language_code: Option<String>,
    pub value: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct AddressLocationAggregation {
    pub latitude: Option<f64>,
    pub longitude: Option<f64>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CustomerPhoneAggregation {
    pub country_code: Option<i32>,
    pub number: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct MenuCartAggregation {
    pub count: Option<i32>,
    pub products: Option<Vec<CartProductAggregation>>,
    pub original_total_price: Option<PriceAggregation>,
    pub total_discounted_cost: Option<PriceAggregation>,
    pub total_delivered_cost: Option<PriceAggregation>,
    pub total_price: Option<PriceAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CartProductAggregation {
    pub id: Option<String>,
    pub quantity: Option<i32>,
    pub unit_price: Option<PriceAggregation>,
    pub total_price: Option<PriceAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct PriceAggregation {
    pub value: Option<f64>,
    pub currency: Option<CurrencyAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CurrencyAggregation {
    pub id: Option<String>,
    pub code: Option<String>,
}

#[derive(Debug, Display)]
pub enum GetListCurrentMenuOrdersError {
    #[display(fmt = "invalid_object_id")]
    InvalidObjectId,
    Default(String),
}

impl ResponseError for GetListCurrentMenuOrdersError {
    fn error_response(&self) -> HttpResponse {
        match self {
            GetListCurrentMenuOrdersError::InvalidObjectId => {
                HttpResponse::NotAcceptable().body("invalid_object_id")
            }
            GetListCurrentMenuOrdersError::Default(error) => HttpResponse::BadRequest().body(error),
        }
    }
}