CostSubject string
This commit is contained in:
parent
4301327ce9
commit
ddcc5b7224
|
@ -17,7 +17,7 @@ type ApprovalPayment struct {
|
||||||
ApplyTime string
|
ApplyTime string
|
||||||
CreateTime int64
|
CreateTime int64
|
||||||
UpdateTime int64
|
UpdateTime int64
|
||||||
|
CostSubject string
|
||||||
PaymentType string
|
PaymentType string
|
||||||
PaymentDate string
|
PaymentDate string
|
||||||
PaymentAmount float64
|
PaymentAmount float64
|
||||||
|
@ -34,6 +34,7 @@ func (a *ApprovalPayment) From(d *qyweixin.ApproveDetail) {
|
||||||
paymentTime := cast.ToInt64(d.GetValue("付款日期"))
|
paymentTime := cast.ToInt64(d.GetValue("付款日期"))
|
||||||
a.Month = time.Unix(paymentTime, 0).Format("200601")
|
a.Month = time.Unix(paymentTime, 0).Format("200601")
|
||||||
|
|
||||||
|
a.CostSubject = d.GetValue("成本主体")
|
||||||
a.PaymentType = d.GetValue("付款类型")
|
a.PaymentType = d.GetValue("付款类型")
|
||||||
a.PaymentPayer = d.GetValue("付款主体")
|
a.PaymentPayer = d.GetValue("付款主体")
|
||||||
a.PaymentDate = goutil.TimeToDateTime(paymentTime)
|
a.PaymentDate = goutil.TimeToDateTime(paymentTime)
|
||||||
|
|
|
@ -22,6 +22,7 @@ type ApprovalRefund struct {
|
||||||
Username string
|
Username string
|
||||||
Month string
|
Month string
|
||||||
SpNo string
|
SpNo string
|
||||||
|
CostSubject string
|
||||||
RefundType string
|
RefundType string
|
||||||
RefundDate string
|
RefundDate string
|
||||||
RefundAmount float64
|
RefundAmount float64
|
||||||
|
@ -38,6 +39,7 @@ func (refund *ApprovalRefund) From(d *qyweixin.ApproveDetail) {
|
||||||
refund.ApplyTime = goutil.TimeToDateTime(d.ApplyTime)
|
refund.ApplyTime = goutil.TimeToDateTime(d.ApplyTime)
|
||||||
refund.Status = ApprovalRefundStatusCreated
|
refund.Status = ApprovalRefundStatusCreated
|
||||||
refund.RefundType = d.GetValue("报销类型")
|
refund.RefundType = d.GetValue("报销类型")
|
||||||
|
refund.CostSubject = d.GetValue("成本主体")
|
||||||
refundTime := cast.ToInt64(d.GetValue("发生时间"))
|
refundTime := cast.ToInt64(d.GetValue("发生时间"))
|
||||||
refund.Month = time.Unix(refundTime, 0).Format("200601")
|
refund.Month = time.Unix(refundTime, 0).Format("200601")
|
||||||
refund.RefundDate = goutil.TimeToDateTime(refundTime)
|
refund.RefundDate = goutil.TimeToDateTime(refundTime)
|
||||||
|
|
Loading…
Reference in New Issue