- use real sku spec as spu sale attr

This commit is contained in:
gazebo
2018-12-26 15:49:38 +08:00
parent e8ce327fc0
commit 662fd6d8b1
2 changed files with 8 additions and 9 deletions

View File

@@ -68,7 +68,6 @@ func (c *FinancialController) GetStoreBills() {
// @Failure 200 {object} controllers.CallResult
// @router /ShowStoreLatestBill [get]
func (c *FinancialController) ShowStoreLatestBill() {
var err2 error
var bills []*legacymodel.StoreBill
w := c.Ctx.ResponseWriter
w.Header().Add("Content-Type", "text/html")
@@ -85,7 +84,6 @@ func (c *FinancialController) ShowStoreLatestBill() {
} else {
htmlResult = fmt.Sprintf(html, bills[0].Url)
}
err2 = err
return retVal, model.ErrorCodeIgnore, err
})
if htmlResult != "" {