Danh sách
Lấy danh sách đơn hàng
Danh sách đơn hàng bán
>HTTP Request
[GET] /api/v6/sale_orders
Query Parameters
Fields
Fields | Type | Description |
---|---|---|
id | integer | Định danh |
order_code | string | Mã sản phẩm |
real_amount | numeric | Tổng tiền đơn hàng |
f_amount | numeric | Tổng tiền đã thanh toán |
discount | numeric | Giảm giá phần trăm |
discount_amount | numeric | Giảm giá tiền mặt |
vat_amount | numeric | VAT tiền mặt |
account_id | integer | Định danh khách hàng |
account_code | string | Mã khách hàng |
account_email | string | Email khách hàng |
account_phone | numeric | Số điện thoại khách hàng |
account_address | string | Địa chỉ khách hàng |
order_date | timestamp | Ngày đặt hàng |
created_at | timestamp | Ngày tạo |
updated_at | timestamp | Ngày sửa |
status | integer | Trạng thái |
assigned_user | integer | Người thực hiện |
assigned_user_name | string | Tên người thực hiện |
Filtering
Fields | Support | Type | Description |
---|---|---|---|
id | eq,in | integer | Định danh |
order_date | gte,lte,eq,between | timestamp | Ngày đặt hàng |
created_at | eq,gte,lte | timestamp | Ngày tạo đơn |
updated_at | eq,gte,lte | timestamp | Ngày sửa đơn |
Sort
Sort (field) | Direction |
---|---|
id | asc,desc |
order_date | asc,desc |
Limit & Offset
Type | Description | |
---|---|---|
Limit | integer | Lấy bao nhiêu bản ghi |
Offset | integer | Bỏ qua bao nhiêu bản ghi |
Example
HTTP Request
GET api/v6/sale_orders?fields=order_code&limit=1&offset=1&filtering[id]=4 HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
Status
200 OK
Response
{
"data": [
{
"id": 5,
"order_code": "DH1588"
}
],
"has_more": false,
"offset": 1,
"limited": 1
}
Danh sách đơn hàng mua
HTTP Request
[GET] /api/v6/purchase_orders
Query Parameters
Fields
Fields | Type | Description |
---|---|---|
id | integer | Định danh |
order_code | string | Mã sản phẩm |
real_amount | numeric | Tổng tiền đơn hàng |
f_amount | numeric | Tổng tiền đã thanh toán |
discount | numeric | Giảm giá phần trăm |
discount_amount | numeric | Giảm giá tiền mặt |
vat_amount | numeric | VAT tiền mặt |
account_id | integer | Định danh khách hàng |
account_code | string | Mã khách hàng |
account_email | string | Email khách hàng |
account_phone | numeric | Số điện thoại khách hàng |
account_address | string | Địa chỉ khách hàng |
order_date | timestamp | Ngày đặt hàng |
created_at | timestamp | Ngày tạo |
updated_at | timestamp | Ngày sửa |
status | integer | Trạng thái |
assigned_user | integer | Người thực hiện |
assigned_user_name | string | Tên người thực hiện |
Filtering
Fields | Support | Type | Description |
---|---|---|---|
id | eq,in | integer | Định danh |
order_date | gte,lte,eq,between | timestamp | Ngày đặt hàng |
created_at | eq,gte,lte | timestamp | Ngày tạo đơn |
updated_at | eq,gte,lte | timestamp | Ngày sửa đơn |
Sort
Sort (field) | Direction |
---|---|
id | asc,desc |
order_date | asc,desc |
Limit & Offset
Type | Description | |
---|---|---|
Limit | integer | Lấy bao nhiêu bản ghi |
Offset | integer | Bỏ qua bao nhiêu bản ghi |
Example
HTTP Request
GET api/v6/purchase_orders?fields=order_code&limit=1&offset=1&filtering[id]=4 HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
Status
200 OK
Response
{
"data": [
{
"id": 4,
"order_code": "DH1588"
}
],
"has_more": false,
"offset": 0,
"limited": 1
}