order - Ourdus/Ourdus GitHub Wiki

Request

Header:[{  
"jwt-auth-token" : "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzI(์ง€๊ธˆ ์ ‘์†ํ•œ ์œ ์ €์˜ ํ† ํฐ)"  
}],
data: 
  {
    "orderForms":[{
        "productId": 1,
        "optionInfo": "์˜ต์…˜1: ์„ ํƒ/ ์˜ต์…˜2: ์„ ํƒ์•ˆํ•จ",
        "productNum": 2,
        "productDetailPrice": 20000
    },
    {
        "productId": 2,
        "optionInfo": "์˜ต์…˜1: ์–ด๋–ป๊ฒŒ/ ์˜ต์…˜2: ์„ ํƒํ•จ",
        "productNum": 3,
        "productDetailPrice": 20000
    }],
    "addressDTO":{
        "id": null,
        "name": "์ˆ˜๋ น์ž์ด๋ฆ„",
        "phone": "010-000-0000",
        "zipcode": "123211", 
        "addressMain": "์ˆ˜๋ นํ•  ์ฃผ์ฃผ์†Œ",
        "addressSub": "์ˆ˜๋ นํ•  ์ƒ์„ธ์ฃผ์†Œ"
    },
    "orderPrice": 50000,
    "orderAccount": "๊ฒฐ์ œ์ •๋ณด"

}
  • addressDTO์— ํ•ด๋‹น 'id'๊ฐ’์„ ๋ณด๋‚ด์ฃผ๋ฉด, ๊ทธ ์ฃผ์†Œ์— ํ•ด๋‹นํ•˜๋Š” ๊ฐ’์„ ์ˆ˜์ •(update)์‹œํ‚ค๊ณ  ํ•ด๋‹น ์ฃผ์†Œ์˜ ์ •๋ณด๋กœ ๋“ค์–ด๊ฐ‘๋‹ˆ๋‹ค.
  • orderetail๊ฐ’๋“ค์„ ๊ฐ๊ฐ ๋„ฃ์–ด์ฃผ๊ณ , ์ด๋“ค์˜ ํ•ฉ์‚ฐ์„ orderPrice์— ๋„ฃ์–ด์ฃผ์…”์•ผํ•ฉ๋‹ˆ๋‹ค.

Response

{
    "success": true,
    "response": {
        "id": 5,
        "orderDate": "2021-02-25T13:44:11.2867948",
        "price": 50000,
        "account": "๊ฒฐ์ œ์ •๋ณด",
        "orderDetailDTOs": [
            {
                "id": 7,
                "orderId": 5,
                "authorId": 1,
                "authorName": "test0",
                "productId": 1,
                "productName": "product1_by_test0",
                "optionInfo": "์˜ต์…˜1: ์„ ํƒ/ ์˜ต์…˜2: ์„ ํƒ์•ˆํ•จ",
                "productNum": 2,
                "productDetailPrice": 20000
            },
            {
                "id": 8,
                "orderId": 5,
                "authorId": 2,
                "authorName": "test1",
                "productId": 2,
                "productName": "product2_by_test1",
                "optionInfo": "์˜ต์…˜1: ์–ด๋–ป๊ฒŒ/ ์˜ต์…˜2: ์„ ํƒํ•จ",
                "productNum": 3,
                "productDetailPrice": 20000
            }
        ],
        "addressDTO": {
            "id": 6,
            "name": "์ˆ˜๋ น์ž์ด๋ฆ„",
            "phone": "010-000-0000",
            "zipcode": "123211",
            "addressMain": "์ˆ˜๋ นํ•  ์ฃผ์ฃผ์†Œ",
            "addressSub": "์ˆ˜๋ นํ•  ์ƒ์„ธ์ฃผ์†Œ"
        }
    },
    "apiError": null
}