Chuyển tới nội dung chính

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

FieldsTypeDescription
idintegerĐịnh danh
order_codestringMã đơn hàng
real_amountnumericTổng tiền đơn hàng
f_amountnumericTổng tiền đã thanh toán
discountnumericGiảm giá phần trăm
discount_amountnumericGiảm giá tiền mặt
vat_amountnumericVAT tiền mặt
account_idintegerĐịnh danh khách hàng
account_codestringMã khách hàng
account_emailstringEmail khách hàng
account_phonenumericSố điện thoại khách hàng
account_addressstringĐịa chỉ khách hàng
contact_namestringTên liên hệ
contact_phonestringSố điện thoại liên hệ
contact_emailstringEmail liên hệ
order_datetimestampNgày đặt hàng
created_attimestampNgày tạo
updated_attimestampNgày sửa
statusintegerTrạng thái
status_labelstringTên trạng thái
store_idintegerĐịnh danh kho
assigned_userintegerNgười thực hiện
assigned_user_namestringTên người thực hiện
order_detailsarrayThông tin sản phẩm trong đơn hàng
order_details.*.product_idintegerĐịnh danh sản phẩm
order_details.*.product_codestringMã sản phẩm
order_details.*.product_namestringTên sản phẩm
order_details.*.notestringMô tả sản phẩm
order_details.*.product_sale_offnumericGiảm giá sản phẩm
order_details.*.cash_discountnumericGiảm giá tiền mặt
order_details.*.pricenumericGiá sản phẩm
order_details.*.quantitynumericSố lượng sản phẩm
order_details.*.vatnumericVat sản phẩm (%)
order_details.*.vat_amountnumericVat sản phẩm (cash)

Filtering

FieldsSupportTypeDescription
ideq,inintegerĐịnh danh
order_dategte,lte,eq,betweentimestampNgày đặt hàng
created_ateq,gte,ltetimestampNgày tạo đơn
updated_ateq,gte,ltetimestampNgày sửa đơn

Sort

Sort (field)Direction
idasc,desc
order_dateasc,desc

Limit & Offset

TypeDescription
LimitintegerLấy bao nhiêu bản ghi
OffsetintegerBỏ 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

FieldsTypeDescription
idintegerĐịnh danh
order_codestringMã đơn hàng
real_amountnumericTổng tiền đơn hàng
f_amountnumericTổng tiền đã thanh toán
discountnumericGiảm giá phần trăm
discount_amountnumericGiảm giá tiền mặt
vat_amountnumericVAT tiền mặt
account_idintegerĐịnh danh khách hàng
account_codestringMã khách hàng
account_emailstringEmail khách hàng
account_phonenumericSố điện thoại khách hàng
account_addressstringĐịa chỉ khách hàng
contact_namestringTên liên hệ
contact_phonestringSố điện thoại liên hệ
contact_emailstringEmail liên hệ
order_datetimestampNgày đặt hàng
created_attimestampNgày tạo
updated_attimestampNgày sửa
statusintegerTrạng thái
assigned_userintegerNgười thực hiện
assigned_user_namestringTên người thực hiện
order_detailsarrayThông tin sản phẩm trong đơn hàng
order_details.*.product_idintegerĐịnh danh sản phẩm
order_details.*.product_codestringMã sản phẩm
order_details.*.product_namestringTên sản phẩm
order_details.*.notestringMô tả sản phẩm
order_details.*.product_sale_offnumericGiảm giá sản phẩm
order_details.*.cash_discountnumericGiảm giá tiền mặt
order_details.*.pricenumericGiá sản phẩm
order_details.*.quantitynumericSố lượng sản phẩm
order_details.*.vatnumericVat sản phẩm (%)
order_details.*.vat_amountnumericVat sản phẩm (cash)
custom_fieldsobjectThông tin định nghĩa dữ liệu

Filtering

FieldsSupportTypeDescription
ideq,inintegerĐịnh danh
order_dategte,lte,eq,betweentimestampNgày đặt hàng
created_ateq,gte,ltetimestampNgày tạo đơn
updated_ateq,gte,ltetimestampNgày sửa đơn

Sort

Sort (field)Direction
idasc,desc
order_dateasc,desc

Limit & Offset

TypeDescription
LimitintegerLấy bao nhiêu bản ghi
OffsetintegerBỏ 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
}