POST dz_api/SalesTrans/GetSalesTransData

获取指定业务员的销售转化记录(个人数据分析)

Request Information

URI Parameters

None.

Body Parameters

SearchSalesTransConditions
NameDescriptionTypeAdditional information
Keyword

关键字

string

None.

Salesmans

业务员

Collection of integer

None.

DateStart

添加时间起

date

None.

DateEnd

添加时间至

date

None.

IsAdmin

是否是管理员或部门经理

boolean

None.

PageIndex

页码

integer

None.

PageSize

页面大小

integer

None.

NoPaged

不要分页

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Keyword": "sample string 1",
  "Salesmans": [
    1,
    2
  ],
  "DateStart": "2024-04-28T03:40:07.3721+08:00",
  "DateEnd": "2024-04-28T03:40:07.3721+08:00",
  "IsAdmin": true,
  "PageIndex": 5,
  "PageSize": 6,
  "NoPaged": true
}

application/xml, text/xml

Sample:
<SearchSalesTransConditions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM.Sales">
  <NoPaged xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM">true</NoPaged>
  <PageIndex xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM">5</PageIndex>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM">6</PageSize>
  <DateEnd>2024-04-28T03:40:07.3721+08:00</DateEnd>
  <DateStart>2024-04-28T03:40:07.3721+08:00</DateStart>
  <IsAdmin>true</IsAdmin>
  <Keyword>sample string 1</Keyword>
  <Salesmans xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Salesmans>
</SearchSalesTransConditions>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

获取指定业务员的销售转化记录(个人数据分析)

SalesTransListModel
NameDescriptionTypeAdditional information
Selesman

业务员

string

None.

ReceivedNum

已指派

integer

None.

QualityNum

优质线索

integer

None.

SeasNum

公海线索

integer

None.

PrivateNum

私有客户

integer

None.

FollowupNum

已跟进

integer

None.

NotFollowupNum

未跟进

integer

None.

OrderNum

已成单

integer

None.

Amount

成单金额

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "Selesman": "sample string 1",
  "ReceivedNum": 2,
  "QualityNum": 3,
  "SeasNum": 4,
  "PrivateNum": 5,
  "FollowupNum": 6,
  "NotFollowupNum": 7,
  "OrderNum": 8,
  "Amount": 9.0
}

application/xml, text/xml

Sample:
<SalesTransListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.CRM.Models">
  <Amount>9</Amount>
  <FollowupNum>6</FollowupNum>
  <NotFollowupNum>7</NotFollowupNum>
  <OrderNum>8</OrderNum>
  <PrivateNum>5</PrivateNum>
  <QualityNum>3</QualityNum>
  <ReceivedNum>2</ReceivedNum>
  <SeasNum>4</SeasNum>
  <Selesman>sample string 1</Selesman>
</SalesTransListModel>