|
@@ -9,33 +9,39 @@ import (
|
|
|
|
|
|
// PreRegister 合同开票表
|
|
|
type ContractPreRegister struct {
|
|
|
- PreRegisterId int `gorm:"primaryKey;column:pre_register_id" json:"pre_register_id" description:"预登记ID"`
|
|
|
- ContractRegisterId int `gorm:"column:contract_register_id" json:"contract_register_id" description:"登记ID"`
|
|
|
- InvoiceId int `gorm:"column:invoice_id" json:"invoice_id" description:"开票ID"`
|
|
|
- ArriveId int `gorm:"column:arrive_id" json:"arrive_id" description:"到款ID"`
|
|
|
- CompanyName string `json:"company_name" description:"客户名称"`
|
|
|
- Amount float64 `gorm:"column:amount" json:"amount" description:"开票换算后的金额(人民币)"`
|
|
|
- OriginAmount float64 `gorm:"column:origin_amount" json:"origin_amount" description:"开票金额"`
|
|
|
- CurrencyUnit string `gorm:"column:currency_unit" json:"currency_unit" description:"开票货币国际代码"`
|
|
|
- ArriveAmount float64 `gorm:"column:arrive_amount" json:"arrive_amount" description:"到款换算后的金额(人民币)"`
|
|
|
- ArriveOriginAmount float64 `gorm:"column:arrive_origin_amount" json:"arrive_origin_amount" description:"到款金额"`
|
|
|
- InvoiceType int `gorm:"column:invoice_type" json:"invoice_type" description:"类型: 1-开票登记; 2-到款登记;3-开票预登记;4-到款预登记"`
|
|
|
- InvoiceDate time.Time `gorm:"column:invoice_time" json:"invoice_time" description:"开票日"`
|
|
|
- ArriveDate time.Time `gorm:"column:arrive_time" json:"arrive_time" description:"到款日"`
|
|
|
- SellerId int `gorm:"column:seller_id" json:"seller_id" description:"销售ID"`
|
|
|
- SellerName string `gorm:"column:seller_name" json:"seller_name" description:"销售名称"`
|
|
|
- SellerGroupId int `gorm:"column:seller_group_id" json:"seller_group_id" description:"销售分组ID"`
|
|
|
- SellerGroupName string `gorm:"column:seller_group_name" json:"seller_group_name" description:"销售分组名称"`
|
|
|
- SellerTeamId int `gorm:"column:seller_team_id" json:"seller_team_id" description:"销售小组ID"`
|
|
|
- SellerTeamName string `gorm:"column:seller_team_name" json:"seller_team_name" description:"销售小组名称"`
|
|
|
- AdminId int `gorm:"column:admin_id" json:"admin_id" description:"操作人ID"`
|
|
|
- AdminName string `gorm:"column:admin_name" json:"admin_name" description:"操作人姓名"`
|
|
|
- Remark string `gorm:"column:remark" json:"remark" description:"备注信息"`
|
|
|
- ArriveRemark string `gorm:"column:arrive_remark" json:"arrive_remark" description:"到款备注信息"`
|
|
|
- ServiceProductId int `gorm:"column:service_product_id" json:"service_product_id" description:"套餐类型:1ficc套餐,2权益套餐"`
|
|
|
- IsPrePay int `gorm:"column:is_pre_pay" json:"is_pre_pay" description:"是否预付款: 0-不是; 1-是"`
|
|
|
- StartDate time.Time `gorm:"column:start_date" json:"start_date" description:"约定开始时间"`
|
|
|
- EndDate time.Time `gorm:"column:end_date" json:"end_date" description:"约定结束时间"`
|
|
|
+ PreRegisterId int `gorm:"primaryKey;column:pre_register_id" json:"pre_register_id" description:"预登记ID"`
|
|
|
+ ContractRegisterId int `gorm:"column:contract_register_id" json:"contract_register_id" description:"登记ID"`
|
|
|
+ InvoiceId int `gorm:"column:invoice_id" json:"invoice_id" description:"开票ID"`
|
|
|
+ ArriveId int `gorm:"column:arrive_id" json:"arrive_id" description:"到款ID"`
|
|
|
+ CompanyName string `json:"company_name" description:"客户名称"`
|
|
|
+ Amount float64 `gorm:"column:amount" json:"amount" description:"开票换算后的金额(人民币)"`
|
|
|
+ OriginAmount float64 `gorm:"column:origin_amount" json:"origin_amount" description:"开票金额"`
|
|
|
+ CurrencyUnit string `gorm:"column:currency_unit" json:"currency_unit" description:"开票货币国际代码"`
|
|
|
+ ArriveAmount float64 `gorm:"column:arrive_amount" json:"arrive_amount" description:"到款换算后的金额(人民币)"`
|
|
|
+ ArriveOriginAmount float64 `gorm:"column:arrive_origin_amount" json:"arrive_origin_amount" description:"到款金额"`
|
|
|
+ InvoiceType int `gorm:"column:invoice_type" json:"invoice_type" description:"类型: 1-开票登记; 2-到款登记;3-开票预登记;4-到款预登记"`
|
|
|
+ InvoiceDate time.Time `gorm:"column:invoice_time" json:"invoice_time" description:"开票日"`
|
|
|
+ ArriveDate time.Time `gorm:"column:arrive_time" json:"arrive_time" description:"到款日"`
|
|
|
+ SellerId int `gorm:"column:seller_id" json:"seller_id" description:"销售ID"`
|
|
|
+ SellerName string `gorm:"column:seller_name" json:"seller_name" description:"销售名称"`
|
|
|
+ SellerGroupId int `gorm:"column:seller_group_id" json:"seller_group_id" description:"销售分组ID"`
|
|
|
+ SellerGroupName string `gorm:"column:seller_group_name" json:"seller_group_name" description:"销售分组名称"`
|
|
|
+ SellerTeamId int `gorm:"column:seller_team_id" json:"seller_team_id" description:"销售小组ID"`
|
|
|
+ SellerTeamName string `gorm:"column:seller_team_name" json:"seller_team_name" description:"销售小组名称"`
|
|
|
+ AdminId int `gorm:"column:admin_id" json:"admin_id" description:"操作人ID"`
|
|
|
+ AdminName string `gorm:"column:admin_name" json:"admin_name" description:"操作人姓名"`
|
|
|
+ Remark string `gorm:"column:remark" json:"remark" description:"备注信息"`
|
|
|
+ ArriveRemark string `gorm:"column:arrive_remark" json:"arrive_remark" description:"到款备注信息"`
|
|
|
+ ServiceProductId int `gorm:"column:service_product_id" json:"service_product_id" description:"套餐类型:1ficc套餐,2权益套餐"`
|
|
|
+ IsPrePay int `gorm:"column:is_pre_pay" json:"is_pre_pay" description:"是否预付款: 0-不是; 1-是"`
|
|
|
+ StartDate time.Time `gorm:"column:start_date" json:"start_date" description:"约定开始时间"`
|
|
|
+ EndDate time.Time `gorm:"column:end_date" json:"end_date" description:"约定结束时间"`
|
|
|
+ PaymentSellerId int `gorm:"column:payment_seller_id;default:0;NOT NULL" json:"payment_seller_id"` // 销售ID
|
|
|
+ PaymentSellerName string `gorm:"column:payment_seller_name;NOT NULL" json:"payment_seller_name"` // 销售名称
|
|
|
+ PaymentSellerGroupId int `gorm:"column:payment_seller_group_id;default:0;NOT NULL" json:"payment_seller_group_id"` // 销售分组ID
|
|
|
+ PaymentSellerGroupName string `gorm:"column:payment_seller_group_name;NOT NULL" json:"payment_seller_group_name"` // 销售分组名称
|
|
|
+ PaymentSellerTeamId int `gorm:"column:payment_seller_team_id;default:0;NOT NULL" json:"payment_seller_team_id"` // 销售小组ID
|
|
|
+ PaymentSellerTeamName string `gorm:"column:payment_seller_team_name;NOT NULL" json:"payment_seller_team_name"` // 销售小组名称
|
|
|
base.TimeBase
|
|
|
}
|
|
|
|
|
@@ -45,31 +51,37 @@ func (c *ContractPreRegister) TableName() string {
|
|
|
|
|
|
// ContractPreRegisterItem 合同开票/到款
|
|
|
type ContractPreRegisterItem struct {
|
|
|
- PreRegisterId int `gorm:"primaryKey;column:pre_register_id" json:"pre_register_id" description:"预登记ID"`
|
|
|
- ContractRegisterId int `gorm:"column:contract_register_id" json:"contract_register_id" description:"登记ID"`
|
|
|
- InvoiceId int `gorm:"column:invoice_id" json:"invoice_id" description:"开票ID"`
|
|
|
- ArriveId int `gorm:"column:arrive_id" json:"arrive_id" description:"到款ID"`
|
|
|
- CompanyName string `json:"company_name" description:"客户名称"`
|
|
|
- Amount float64 `gorm:"column:amount" json:"amount" description:"开票换算后的金额(人民币)"`
|
|
|
- OriginAmount float64 `gorm:"column:origin_amount" json:"origin_amount" description:"开票金额"`
|
|
|
- CurrencyUnit string `gorm:"column:currency_unit" json:"currency_unit" description:"开票货币国际代码"`
|
|
|
- ArriveAmount float64 `gorm:"column:arrive_amount" json:"arrive_amount" description:"到款换算后的金额(人民币)"`
|
|
|
- ArriveOriginAmount float64 `gorm:"column:arrive_origin_amount" json:"arrive_origin_amount" description:"到款金额"`
|
|
|
- UnitName string `json:"unit_name" description:"货币单位名称"`
|
|
|
- InvoiceType int `gorm:"column:invoice_type" json:"invoice_type" description:"类型: 1-开票登记; 2-到款登记;3-开票预登记;4-到款预登记"`
|
|
|
- InvoiceDate string `gorm:"column:invoice_time" json:"invoice_time" description:"开票日"`
|
|
|
- ArriveDate string `gorm:"column:arrive_time" json:"arrive_time" description:"到款日"`
|
|
|
- SellerId int `gorm:"column:seller_id" json:"seller_id" description:"销售ID"`
|
|
|
- SellerName string `gorm:"column:seller_name" json:"seller_name" description:"销售名称"`
|
|
|
- PayType int `gorm:"column:pay_type" json:"pay_type" description:"付款方式:0-无;1-年付;2-半年付;3-季付;4-次付;5-异常"`
|
|
|
- Remark string `gorm:"column:remark" json:"remark" description:"开票备注信息"`
|
|
|
- ArriveRemark string `gorm:"column:arrive_remark" json:"arrive_remark" description:"到款备注信息"`
|
|
|
- ServiceProductId int `gorm:"column:service_product_id" json:"service_product_id" description:"套餐类型:1ficc套餐,2权益套餐"`
|
|
|
- IsPrePay int `gorm:"column:is_pre_pay" json:"is_pre_pay" description:"是否预付款: 0-不是; 1-是"`
|
|
|
- StartDate string `gorm:"column:start_date" json:"start_date" description:"约定开始时间"`
|
|
|
- EndDate string `gorm:"column:end_date" json:"end_date" description:"约定结束时间"`
|
|
|
- AdminId int `gorm:"column:admin_id" json:"admin_id" description:"操作人ID"`
|
|
|
- CreateTime string `gorm:"column:create_time" json:"create_time" description:"创建时间"`
|
|
|
+ PreRegisterId int `gorm:"primaryKey;column:pre_register_id" json:"pre_register_id" description:"预登记ID"`
|
|
|
+ ContractRegisterId int `gorm:"column:contract_register_id" json:"contract_register_id" description:"登记ID"`
|
|
|
+ InvoiceId int `gorm:"column:invoice_id" json:"invoice_id" description:"开票ID"`
|
|
|
+ ArriveId int `gorm:"column:arrive_id" json:"arrive_id" description:"到款ID"`
|
|
|
+ CompanyName string `json:"company_name" description:"客户名称"`
|
|
|
+ Amount float64 `gorm:"column:amount" json:"amount" description:"开票换算后的金额(人民币)"`
|
|
|
+ OriginAmount float64 `gorm:"column:origin_amount" json:"origin_amount" description:"开票金额"`
|
|
|
+ CurrencyUnit string `gorm:"column:currency_unit" json:"currency_unit" description:"开票货币国际代码"`
|
|
|
+ ArriveAmount float64 `gorm:"column:arrive_amount" json:"arrive_amount" description:"到款换算后的金额(人民币)"`
|
|
|
+ ArriveOriginAmount float64 `gorm:"column:arrive_origin_amount" json:"arrive_origin_amount" description:"到款金额"`
|
|
|
+ UnitName string `json:"unit_name" description:"货币单位名称"`
|
|
|
+ InvoiceType int `gorm:"column:invoice_type" json:"invoice_type" description:"类型: 1-开票登记; 2-到款登记;3-开票预登记;4-到款预登记"`
|
|
|
+ InvoiceDate string `gorm:"column:invoice_time" json:"invoice_time" description:"开票日"`
|
|
|
+ ArriveDate string `gorm:"column:arrive_time" json:"arrive_time" description:"到款日"`
|
|
|
+ SellerId int `gorm:"column:seller_id" json:"seller_id" description:"销售ID"`
|
|
|
+ SellerName string `gorm:"column:seller_name" json:"seller_name" description:"销售名称"`
|
|
|
+ PayType int `gorm:"column:pay_type" json:"pay_type" description:"付款方式:0-无;1-年付;2-半年付;3-季付;4-次付;5-异常"`
|
|
|
+ Remark string `gorm:"column:remark" json:"remark" description:"开票备注信息"`
|
|
|
+ ArriveRemark string `gorm:"column:arrive_remark" json:"arrive_remark" description:"到款备注信息"`
|
|
|
+ ServiceProductId int `gorm:"column:service_product_id" json:"service_product_id" description:"套餐类型:1ficc套餐,2权益套餐"`
|
|
|
+ IsPrePay int `gorm:"column:is_pre_pay" json:"is_pre_pay" description:"是否预付款: 0-不是; 1-是"`
|
|
|
+ StartDate string `gorm:"column:start_date" json:"start_date" description:"约定开始时间"`
|
|
|
+ EndDate string `gorm:"column:end_date" json:"end_date" description:"约定结束时间"`
|
|
|
+ AdminId int `gorm:"column:admin_id" json:"admin_id" description:"操作人ID"`
|
|
|
+ CreateTime string `gorm:"column:create_time" json:"create_time" description:"创建时间"`
|
|
|
+ PaymentSellerId int `gorm:"column:payment_seller_id;default:0;NOT NULL" json:"payment_seller_id"` // 销售ID
|
|
|
+ PaymentSellerName string `gorm:"column:payment_seller_name;NOT NULL" json:"payment_seller_name"` // 销售名称
|
|
|
+ PaymentSellerGroupId int `gorm:"column:payment_seller_group_id;default:0;NOT NULL" json:"payment_seller_group_id"` // 销售分组ID
|
|
|
+ PaymentSellerGroupName string `gorm:"column:payment_seller_group_name;NOT NULL" json:"payment_seller_group_name"` // 销售分组名称
|
|
|
+ PaymentSellerTeamId int `gorm:"column:payment_seller_team_id;default:0;NOT NULL" json:"payment_seller_team_id"` // 销售小组ID
|
|
|
+ PaymentSellerTeamName string `gorm:"column:payment_seller_team_name;NOT NULL" json:"payment_seller_team_name"` // 销售小组名称
|
|
|
}
|
|
|
|
|
|
// formatContractInvoice2Item 格式化ContractInvoiceItem
|
|
@@ -98,6 +110,12 @@ func formatContractPreRegister2Item(item *ContractPreRegister) (formatItem *Cont
|
|
|
formatItem.CreateTime = utils.TimeTransferString(utils.FormatDateTime, item.CreateTime)
|
|
|
formatItem.StartDate = item.StartDate.Format(utils.FormatDate)
|
|
|
formatItem.EndDate = item.EndDate.Format(utils.FormatDate)
|
|
|
+ formatItem.PaymentSellerId = item.PaymentSellerId
|
|
|
+ formatItem.PaymentSellerName = item.PaymentSellerName
|
|
|
+ formatItem.PaymentSellerGroupId = item.PaymentSellerGroupId
|
|
|
+ formatItem.PaymentSellerGroupName = item.PaymentSellerGroupName
|
|
|
+ formatItem.PaymentSellerTeamId = item.PaymentSellerTeamId
|
|
|
+ formatItem.PaymentSellerTeamName = item.PaymentSellerTeamName
|
|
|
return
|
|
|
}
|
|
|
|