|
@@ -357,19 +357,21 @@ type InvoicePaymentCensusItem struct {
|
|
|
|
|
|
// InvoicePaymentCensusInfo 开票到款统计信息
|
|
// InvoicePaymentCensusInfo 开票到款统计信息
|
|
type InvoicePaymentCensusInfo struct {
|
|
type InvoicePaymentCensusInfo struct {
|
|
- InvoiceId int `json:"invoice_id" description:"开票ID"`
|
|
|
|
- InvoiceDate string `json:"invoice_time" description:"开票日期"`
|
|
|
|
- InvoiceAmount float64 `json:"invoice_amount" description:"开票金额"`
|
|
|
|
- SellerId int `json:"seller_id" description:"销售ID"`
|
|
|
|
- SellerName string `json:"seller_name" description:"销售名称"`
|
|
|
|
- SellerGroupId int `json:"seller_group_id" description:"销售组别ID"`
|
|
|
|
- SellerGroupName string `json:"seller_group_name" description:"销售组别名称"`
|
|
|
|
- PaymentId int `json:"payment_id" description:"到款ID"`
|
|
|
|
- PaymentDate string `json:"payment_date" description:"到款日期"`
|
|
|
|
- PaymentAmount float64 `json:"payment_amount" description:"到款金额"`
|
|
|
|
- PayType int `json:"pay_type" description:"付款方式:0-无;1-年付;2-半年付;3-季付;4-次付;5-异常"`
|
|
|
|
- ServiceAmountList []*ContractPaymentServiceAmountItem `json:"service_amount_list" description:"到款套餐金额分配信息"`
|
|
|
|
- SellerType string `json:"seller_type" description:"销售类型:1ficc销售,2权益销售"`
|
|
|
|
|
|
+ InvoiceId int `json:"invoice_id" description:"开票ID"`
|
|
|
|
+ InvoiceDate string `json:"invoice_time" description:"开票日期"`
|
|
|
|
+ InvoiceAmount float64 `json:"invoice_amount" description:"开票换算金额"`
|
|
|
|
+ InvoiceOriginAmount float64 `json:"invoice_origin_amount" description:"开票原始金额"`
|
|
|
|
+ SellerId int `json:"seller_id" description:"销售ID"`
|
|
|
|
+ SellerName string `json:"seller_name" description:"销售名称"`
|
|
|
|
+ SellerGroupId int `json:"seller_group_id" description:"销售组别ID"`
|
|
|
|
+ SellerGroupName string `json:"seller_group_name" description:"销售组别名称"`
|
|
|
|
+ PaymentId int `json:"payment_id" description:"到款ID"`
|
|
|
|
+ PaymentDate string `json:"payment_date" description:"到款日期"`
|
|
|
|
+ PaymentAmount float64 `json:"payment_amount" description:"到款换算金额"`
|
|
|
|
+ PaymentOriginAmount float64 `json:"payment_origin_amount" description:"到款原始金额"`
|
|
|
|
+ PayType int `json:"pay_type" description:"付款方式:0-无;1-年付;2-半年付;3-季付;4-次付;5-异常"`
|
|
|
|
+ ServiceAmountList []*ContractPaymentServiceAmountItem `json:"service_amount_list" description:"到款套餐金额分配信息"`
|
|
|
|
+ SellerType string `json:"seller_type" description:"销售类型:1ficc销售,2权益销售"`
|
|
}
|
|
}
|
|
|
|
|
|
// ContractInvoiceAmountTotal 开票到款金额合计信息
|
|
// ContractInvoiceAmountTotal 开票到款金额合计信息
|
|
@@ -709,22 +711,24 @@ type NotPaymentCensusItem struct {
|
|
|
|
|
|
// NotPaymentCensusInfo 开票到款统计信息
|
|
// NotPaymentCensusInfo 开票到款统计信息
|
|
type NotPaymentCensusInfo struct {
|
|
type NotPaymentCensusInfo struct {
|
|
- InvoiceId int `json:"invoice_id" description:"开票ID"`
|
|
|
|
- InvoiceDate string `json:"invoice_time" description:"开票日期"`
|
|
|
|
- InvoiceAmount float64 `json:"invoice_amount" description:"开票金额"`
|
|
|
|
- SellerId int `json:"seller_id" description:"销售ID"`
|
|
|
|
- SellerName string `json:"seller_name" description:"销售名称"`
|
|
|
|
- SellerGroupId int `json:"seller_group_id" description:"销售组别ID"`
|
|
|
|
- SellerGroupName string `json:"seller_group_name" description:"销售组别名称"`
|
|
|
|
- PaymentId int `json:"payment_id" description:"到款ID"`
|
|
|
|
- PaymentDate string `json:"payment_date" description:"到款日期"`
|
|
|
|
- PaymentAmount float64 `json:"payment_amount" description:"到款金额"`
|
|
|
|
- PayType int `json:"pay_type" description:"付款方式:0-无;1-年付;2-半年付;3-季付;4-次付;5-异常"`
|
|
|
|
- ServiceAmountList []*ContractPaymentServiceAmountItem `json:"service_amount_list" description:"到款套餐金额分配信息"`
|
|
|
|
- SellerType int `json:"seller_type" description:"销售类型:1ficc销售,2权益销售"`
|
|
|
|
- NotPaymentAmount float64 `json:"not_payment_amount" description:"开票未到款金额"`
|
|
|
|
- ServiceProductId int `json:"service_product_id" description:"套餐类型:1ficc套餐,2权益套餐"`
|
|
|
|
- UnitName string `json:"unit_name" description:"单位名称"`
|
|
|
|
|
|
+ InvoiceId int `json:"invoice_id" description:"开票ID"`
|
|
|
|
+ InvoiceDate string `json:"invoice_time" description:"开票日期"`
|
|
|
|
+ InvoiceAmount float64 `json:"invoice_amount" description:"开票换算金额"`
|
|
|
|
+ InvoiceOriginAmount float64 `json:"invoice_origin_amount" description:"开票原始金额"`
|
|
|
|
+ SellerId int `json:"seller_id" description:"销售ID"`
|
|
|
|
+ SellerName string `json:"seller_name" description:"销售名称"`
|
|
|
|
+ SellerGroupId int `json:"seller_group_id" description:"销售组别ID"`
|
|
|
|
+ SellerGroupName string `json:"seller_group_name" description:"销售组别名称"`
|
|
|
|
+ PaymentId int `json:"payment_id" description:"到款ID"`
|
|
|
|
+ PaymentDate string `json:"payment_date" description:"到款日期"`
|
|
|
|
+ PaymentAmount float64 `json:"payment_amount" description:"到款换算金额"`
|
|
|
|
+ PaymentOriginAmount float64 `json:"payment_origin_amount" description:"到款原始金额"`
|
|
|
|
+ PayType int `json:"pay_type" description:"付款方式:0-无;1-年付;2-半年付;3-季付;4-次付;5-异常"`
|
|
|
|
+ ServiceAmountList []*ContractPaymentServiceAmountItem `json:"service_amount_list" description:"到款套餐金额分配信息"`
|
|
|
|
+ SellerType int `json:"seller_type" description:"销售类型:1ficc销售,2权益销售"`
|
|
|
|
+ NotPaymentAmount float64 `json:"not_payment_amount" description:"开票未到款金额"`
|
|
|
|
+ ServiceProductId int `json:"service_product_id" description:"套餐类型:1ficc套餐,2权益套餐"`
|
|
|
|
+ UnitName string `json:"unit_name" description:"单位名称"`
|
|
}
|
|
}
|
|
|
|
|
|
// GetCensusSellerGroupInvoicePageListV2 获取销售组开票统计列表-分页
|
|
// GetCensusSellerGroupInvoicePageListV2 获取销售组开票统计列表-分页
|