Thêm mới
Thêm mới đơn hàng
Thêm mới đơn hàng bán
HTTP Request
[POST] /api/v6/sale_orders
Body Parameters
Parameter | Type | Default | Nullable | Require | Description |
---|---|---|---|---|---|
account_id | integer | yes | Định danh khách hàng | ||
account_code | string | yes | Mã khách hàng | ||
account_name | string | yes | Tên khách hàng | ||
account_address | string | yes | Địa chỉ khách hàng | ||
account_email | string | yes | Email khách hàng | ||
account_phone | integer | yes | Số điện thoại khách hàng | ||
order_date | timestamp | yes | Ngày đặt hàng | ||
discount | numeric | Giảm giá phần trăm | |||
discount_amount | numeric | Giảm giá tiền mặt | |||
vat | numeric | VAT phần trăm | |||
vat_amount | numeric | VAT tiền mặt | |||
transport | numeric | Phí vận chuyển phần trăm | |||
transport_amount | numeric | Phí vận chuyển tiền mặt | |||
installation | numeric | Phí lắp đặt phần trăm | |||
installation_amount | numeric | Phí lắp đặt tiền mặt | |||
src_id | integer | Định danh nguồn | |||
saved_order_details | array | yes | Danh sách sản phẩm | ||
saved_order_details.*.id | integer | yes | Định danh sản phẩm trong đơn | ||
saved_order_details.*.product_id | integer | yes | Định danh sản phẩm | ||
saved_order_details.*.price | numeric | yes | Giá sản phẩm | ||
saved_order_details.*.quantity | integer | yes | Số lượng sản phẩm | ||
saved_order_details.*.product_sale_off | numeric | yes | Giảm giá sản phẩm | ||
saved_order_details.*.cash_discount | numeric | yes | Giảm giá tiền mặt | ||
order_terms | array | yes | Điều khoản đơn hàng | ||
order_terms.*.id | integer | yes | Định danh điều khoản | ||
order_terms.*.term_content | string | yes | Nội dung điều khoản |
Example
HTTP Request
POST api/v6/sale_orders HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
{
"account_id": 1,
"order_date": 1701229899,
"saved_order_details": [
{
"product_id": 1,
"quantity": 1,
"price": 100
}
]
}
Status
200 OK
Response
{
"message": "Thêm mới thành công",
"id": 4
}
Thêm mới đơn hàng mua
HTTP Request
[POST] /api/v6/purchase_orders
Body Parameters
Parameter | Type | Default | Nullable | Require | Description |
---|---|---|---|---|---|
account_id | integer | yes | Định danh khách hàng | ||
account_code | string | yes | Mã khách hàng | ||
account_name | string | yes | Tên khách hàng | ||
account_address | string | yes | Địa chỉ khách hàng | ||
account_email | string | yes | Email khách hàng | ||
account_phone | integer | yes | Số điện thoại khách hàng | ||
order_date | timestamp | yes | Ngày đặt hàng | ||
discount | numeric | Giảm giá phần trăm | |||
discount_amount | numeric | Giảm giá tiền mặt | |||
vat | numeric | VAT phần trăm | |||
vat_amount | numeric | VAT tiền mặt | |||
transport | numeric | Phí vận chuyển phần trăm | |||
transport_amount | numeric | Phí vận chuyển tiền mặt | |||
installation | numeric | Phí lắp đặt phần trăm | |||
installation_amount | numeric | Phí lắp đặt tiền mặt | |||
src_id | integer | Định danh nguồn | |||
saved_order_details | array | yes | Danh sách sản phẩm | ||
saved_order_details.*.id | integer | yes | Định danh sản phẩm trong đơn | ||
saved_order_details.*.product_id | integer | yes | Định danh sản phẩm | ||
saved_order_details.*.price | numeric | yes | Giá sản phẩm | ||
saved_order_details.*.quantity | integer | yes | Số lượng sản phẩm | ||
saved_order_details.*.product_sale_off | numeric | yes | Giảm giá sản phẩm | ||
saved_order_details.*.cash_discount | numeric | yes | Giảm giá tiền mặt | ||
order_terms | array | yes | Điều khoản đơn hàng | ||
order_terms.*.id | integer | yes | Định danh điều khoản | ||
order_terms.*.term_content | string | yes | Nội dung điều khoản |
Example
HTTP Request
POST api/v6/purchase_orders HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
{
"account_id": 1,
"order_date": 1701229899,
"saved_order_details": [
{
"product_id": 1,
"quantity": 1,
"price": 100
}
]
}
Status
200 OK
Response
{
"message": "Thêm mới thành công",
"id": 4
}