报价单接近完成
This commit is contained in:
parent
116171dddd
commit
13c5a45a5e
|
@ -84,7 +84,21 @@ type ProductPrice struct {
|
|||
}
|
||||
|
||||
func (c *FsProductPriceModel) GetAllSelectBySizeId(ctx context.Context, sizeIds []int64) (prices []*ProductPrice, err error) {
|
||||
|
||||
err = c.db.WithContext(ctx).Model(&ProductPrice{}).Where("size_id IN (?) AND status = ?", sizeIds, 1).Select("id, min_buy_num, step_num, step_price, product_id, size_id, each_box_num").Find(&prices).Error
|
||||
var pprices []*FsProductPrice
|
||||
err = c.db.WithContext(ctx).Model(&FsProductPrice{}).Where("size_id IN (?) AND status = ?", sizeIds, 1).Select("id, min_buy_num, step_num, step_price, product_id, size_id, each_box_num").Find(&pprices).Error
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
for _, p := range pprices {
|
||||
prices = append(prices, &ProductPrice{
|
||||
Id: p.Id,
|
||||
MinBuyNum: *p.MinBuyNum,
|
||||
StepNum: *p.StepNum,
|
||||
StepPrice: *p.StepPrice,
|
||||
ProductId: *p.ProductId,
|
||||
SizeId: *p.SizeId,
|
||||
EachBoxNum: *p.EachBoxNum,
|
||||
})
|
||||
}
|
||||
return prices, err
|
||||
}
|
||||
|
|
|
@ -51,7 +51,7 @@ type CapacityId struct {
|
|||
Capacity string `json:"capacity"`
|
||||
}
|
||||
|
||||
func (c *FsProductSizeModel) GetAllSelectIdAndCapacityByIds(ctx context.Context, sizeIds []int64) (sizes []CapacityId, err error) {
|
||||
err = c.db.WithContext(ctx).Where("id IN ?", sizeIds).Select("id, capacity").Find(&sizes).Error
|
||||
func (c *FsProductSizeModel) GetAllSelectIdAndCapacityByIds(ctx context.Context, sizeIds []int64) (sizes []FsProductSize, err error) {
|
||||
err = c.db.WithContext(ctx).Where("id IN ?", sizeIds).Select("id", "capacity").Find(&sizes).Error
|
||||
return sizes, err
|
||||
}
|
||||
|
|
|
@ -5,6 +5,6 @@ import "context"
|
|||
// TODO: 使用model的属性做你想做的
|
||||
|
||||
func (m *FsQuotationModel) FindOneOnlyById(ctx context.Context, quotationId int64) (resp FsQuotation, err error) {
|
||||
err = m.db.WithContext(ctx).Model(&resp).Where("`quotation_id` = ?", quotationId).Take(&resp).Error
|
||||
err = m.db.WithContext(ctx).Model(&resp).Where("`id` = ?", quotationId).Take(&resp).Error
|
||||
return resp, err
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ import "context"
|
|||
|
||||
// TODO: 使用model的属性做你想做的
|
||||
|
||||
func (c *FsQuotationProductModel) GetAllByQuotationIdOrderAsc(ctx context.Context, quotationId int64) (resp []FsQuotationProduct, err error) {
|
||||
func (c *FsQuotationProductModel) GetAllByQuotationIdOrderAsc(ctx context.Context, quotationId int64) (resp []*FsQuotationProduct, err error) {
|
||||
err = c.db.WithContext(ctx).Model(&FsQuotationProduct{}).Where("`quotation_id` = ? and `status` = ?", quotationId, 1).Order("sort asc").Find(&resp).Error
|
||||
return resp, err
|
||||
}
|
||||
|
|
|
@ -1,2 +1,10 @@
|
|||
package gmodel
|
||||
// TODO: 使用model的属性做你想做的
|
||||
|
||||
import "context"
|
||||
|
||||
// TODO: 使用model的属性做你想做的
|
||||
|
||||
func (c *FsQuotationSalerModel) GetOne(ctx context.Context, salerId int64) (resp FsQuotationSaler, err error) {
|
||||
err = c.db.WithContext(ctx).Model(&resp).Where("`id` = ?", salerId).Take(&resp).Error
|
||||
return resp, err
|
||||
}
|
||||
|
|
|
@ -25,27 +25,30 @@ func QuotationDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|||
userinfo *auth.BackendUserInfo
|
||||
)
|
||||
// 解析JWT token,并对空用户进行判断
|
||||
claims, err := svcCtx.ParseJwtToken(r)
|
||||
// 如果解析JWT token出错,则返回未授权的JSON响应并记录错误消息
|
||||
if err != nil || claims == nil {
|
||||
httpx.OkJsonCtx(r.Context(), w, &basic.Response{
|
||||
Code: 401, // 返回401状态码,表示未授权
|
||||
Message: "unauthorized", // 返回未授权信息
|
||||
})
|
||||
logx.Info("unauthorized:", err.Error()) // 记录错误日志
|
||||
return
|
||||
}
|
||||
// claims, err := svcCtx.ParseJwtToken(r)
|
||||
// // 如果解析JWT token出错,则返回未授权的JSON响应并记录错误消息
|
||||
// if err != nil || claims == nil {
|
||||
// httpx.OkJsonCtx(r.Context(), w, &basic.Response{
|
||||
// Code: 401, // 返回401状态码,表示未授权
|
||||
// Message: "unauthorized", // 返回未授权信息
|
||||
// })
|
||||
// logx.Info("unauthorized:", err.Error()) // 记录错误日志
|
||||
// return
|
||||
// }
|
||||
|
||||
// 从token中获取对应的用户信息
|
||||
userinfo, err = auth.GetBackendUserInfoFormMapClaims(claims)
|
||||
// 如果获取用户信息出错,则返回未授权的JSON响应并记录错误消息
|
||||
// // 从token中获取对应的用户信息
|
||||
// userinfo, err = auth.GetBackendUserInfoFormMapClaims(claims)
|
||||
// // 如果获取用户信息出错,则返回未授权的JSON响应并记录错误消息
|
||||
// if err != nil {
|
||||
// httpx.OkJsonCtx(r.Context(), w, &basic.Response{
|
||||
// Code: 401,
|
||||
// Message: "unauthorized",
|
||||
// })
|
||||
// logx.Info("unauthorized:", err.Error())
|
||||
// return
|
||||
// }
|
||||
if err != nil {
|
||||
httpx.OkJsonCtx(r.Context(), w, &basic.Response{
|
||||
Code: 401,
|
||||
Message: "unauthorized",
|
||||
})
|
||||
logx.Info("unauthorized:", err.Error())
|
||||
return
|
||||
|
||||
}
|
||||
|
||||
var req types.RequestQuotationId
|
||||
|
|
|
@ -1,11 +1,16 @@
|
|||
package logic
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"fusenapi/model/gmodel"
|
||||
"fusenapi/utils/auth"
|
||||
"fusenapi/utils/basic"
|
||||
"fusenapi/utils/collect"
|
||||
"fusenapi/utils/format"
|
||||
"log"
|
||||
"strings"
|
||||
"text/template"
|
||||
|
||||
"context"
|
||||
|
||||
|
@ -44,6 +49,200 @@ func GetPrice(num int64, stepNum []int64, stepPrice []int64) int64 {
|
|||
return 0
|
||||
}
|
||||
|
||||
// GetDemoHtml 报价单
|
||||
func (l *QuotationDetailLogic) GetDemoHtml(quot *gmodel.FsQuotation, quotationProduct []*gmodel.FsQuotationProduct) (htmlcontent string, err error) {
|
||||
saler, err := l.svcCtx.AllModels.FsQuotationSaler.GetOne(l.ctx, quot.Id)
|
||||
if err != nil {
|
||||
|
||||
return "", err
|
||||
}
|
||||
|
||||
log.Println(saler)
|
||||
|
||||
// htmlContent := ""
|
||||
priceHtml := ""
|
||||
// productNum := len(quotationProduct)
|
||||
// page := 3
|
||||
// pageTotal := 3 + productNum
|
||||
|
||||
for _, quotProduct := range quotationProduct {
|
||||
|
||||
var priceInfo []map[string]interface{}
|
||||
err := json.Unmarshal([]byte(*quotProduct.PriceInfo), &priceInfo)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
priceHtmlTpl := `
|
||||
{{range $i, $parr := .priceInfo}}
|
||||
{{if lt $i 3}}
|
||||
<div class="pr-card">
|
||||
<p class="pr">${{$parr.price}}</p>
|
||||
<p class="num">{{$parr.num}}<span> Units</span></p>
|
||||
</div>
|
||||
{{else}}
|
||||
<div class="pr-card" style="margin-right: 8px;">
|
||||
<p class="pr">${{$parr.price}}</p>
|
||||
<p class="num">{{$parr.num}}<span> Units</span></p>
|
||||
</div>
|
||||
{{end}}
|
||||
{{end}}`
|
||||
|
||||
tpl := template.Must(template.New("prCardTpl").Parse(priceHtmlTpl))
|
||||
buf := &bytes.Buffer{}
|
||||
err = tpl.Execute(buf, map[string]interface{}{
|
||||
"priceInfo": priceInfo,
|
||||
})
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
return "", err
|
||||
}
|
||||
priceHtml = buf.String()
|
||||
}
|
||||
|
||||
tplcontent := `
|
||||
{{$product_num := len .products}}
|
||||
{{$page := 3}}
|
||||
{{$page_total := add $page $product_num}}
|
||||
{{range $arr := .products}}
|
||||
{{$price := json_decode $arr.price_info}}
|
||||
{{$price_html := .priceHtml}}
|
||||
|
||||
{{$price_html}}
|
||||
|
||||
{{if gt $arr.is_gift 0 }}{{/* 赠品 */}}
|
||||
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 30px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 12px; line-height: 32px;">{{$arr.name}}</p>
|
||||
<p class="f-b" style="font-size: 25px; font-weight: 800;line-height: 19px;">{{$arr.size}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 611px;margin-bottom: 32px; overflow: hidden;">
|
||||
<div class="img" style="background-image: url({{$arr.img}});"></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="pr-card big">
|
||||
<p class="pr">FREE!</p>
|
||||
<p class="num">{{$arr.num}}<span> Units</span></p>
|
||||
</div>
|
||||
<div>
|
||||
<div class="card-box" style="display: inline-block;width: 183px;line-height: 36px;padding-left: 16px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">Lead Time</div>
|
||||
<div class="card-box" style="display: inline-block;width: 183px;height: 52px; padding-left: 15px;margin-bottom: 8px;background-color: #E0E2EB; font-weight: 600;">
|
||||
<span style="font-size: 35px;line-height: 52px;">{{$arr.cycle}}</span><span style="font-size: 26px;line-height: 52px;">Days</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Design</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Storage</span>
|
||||
</div>
|
||||
<div class="card-box more-card" style="margin-bottom: 0;">
|
||||
<span class="free">FREE </span><span class="text">Shipping</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{else}}{{/* 非赠品 */}}
|
||||
{{if $arr.size}}
|
||||
// 有尺寸的
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 30px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 12px; line-height: 32px;">{{$arr.name}}</p>
|
||||
<p class="f-b" style="font-size: 25px; font-weight: 800;line-height: 19px;">{{$arr.size}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 611px;margin-bottom: 32px; overflow: hidden;">
|
||||
<div class="img"
|
||||
style="background-image: url({{$arr.img}});"></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="float: left; width: 530px;line-height: 36px;padding-left: 19px;margin-right: 8px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">Unit Price (Tax included)</div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;line-height: 36px;padding-left: 16px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">
|
||||
Lead Time</div>
|
||||
{{$price_html}}
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;height: 52px; padding-left: 15px;margin-bottom: 8px;background-color: #E0E2EB; font-weight: 600;">
|
||||
<span style="font-size: 35px;line-height: 52px;">{{$arr.cycle}}</span><span
|
||||
style="font-size: 26px;line-height: 52px;">Days</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Design</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Storage</span>
|
||||
</div>
|
||||
<div class="card-box more-card" style="margin-bottom: 0;">
|
||||
<span class="free">FREE </span><span class="text">Shipping</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{else}}
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 32px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 3px; line-height: 32px;">
|
||||
{{$arr.name}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 641px;margin-bottom: 31px; overflow: hidden;">
|
||||
<div class="img" style="background-image: url({{$arr.img}});">
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="float: left;width: 530px;line-height: 36px;padding-left: 19px;margin-right: 8px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">
|
||||
Unit Price (Tax included)</div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;line-height: 36px;padding-left: 16px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">
|
||||
Lead Time</div>
|
||||
{{$price_html}}
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;height: 52px; padding-left: 15px;margin-bottom: 8px;background-color: #E0E2EB; font-weight: 600;">
|
||||
<span style="font-size: 35px;line-height: 52px;">{{$arr.cycle}}</span><span
|
||||
style="font-size: 26px;line-height: 52px;">Days</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Design</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Storage</span>
|
||||
</div>
|
||||
<div class="card-box more-card" style="margin-bottom: 0;">
|
||||
<span class="free">FREE </span><span class="text">Shipping</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
{{end}}
|
||||
<div class="page-box" style="background-color: rgba(125, 125, 125, 0.16);color: #000;text-align: center;height: 50px;line-height: 50px;margin-top: 30px;">{{$page}}/{{$page_total}}</div>
|
||||
{{$page = add $page 1}}
|
||||
{{end}} `
|
||||
tpl := template.New("demo")
|
||||
tpl = tpl.Funcs(format.TemplateFuncMap)
|
||||
tpl = template.Must(tpl.Parse(tplcontent))
|
||||
buf := bytes.NewBufferString("")
|
||||
|
||||
tpl.Execute(buf, map[string]interface{}{
|
||||
"products": collect.StructSliceJson2Maps(quotationProduct),
|
||||
"price_html": priceHtml,
|
||||
})
|
||||
htmlContent := buf.String()
|
||||
log.Println(htmlContent)
|
||||
return htmlContent, nil
|
||||
}
|
||||
|
||||
func (l *QuotationDetailLogic) QuotationDetail(req *types.RequestQuotationId, userinfo *auth.BackendUserInfo) (resp *basic.Response) {
|
||||
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
|
||||
// userinfo 传入值时, 一定不为null
|
||||
|
@ -63,15 +262,15 @@ func (l *QuotationDetailLogic) QuotationDetail(req *types.RequestQuotationId, us
|
|||
return resp.SetStatus(basic.CodeDbSqlErr)
|
||||
}
|
||||
|
||||
quotation, err := l.svcCtx.AllModels.FsQuotationProduct.GetAllByQuotationIdOrderAsc(l.ctx, req.QuotationId)
|
||||
quotationProduct, err := l.svcCtx.AllModels.FsQuotationProduct.GetAllByQuotationIdOrderAsc(l.ctx, req.QuotationId)
|
||||
if err != nil {
|
||||
if err != gorm.ErrRecordNotFound {
|
||||
return resp.SetStatus(basic.CodeDbSqlErr)
|
||||
}
|
||||
}
|
||||
|
||||
var target any = quotation
|
||||
if len(quotation) == 0 {
|
||||
var target any = quotationProduct
|
||||
if len(quotationProduct) == 0 {
|
||||
target = CanteenProduct
|
||||
}
|
||||
|
||||
|
@ -83,26 +282,38 @@ func (l *QuotationDetailLogic) QuotationDetail(req *types.RequestQuotationId, us
|
|||
|
||||
list := gjson.ParseBytes(jdata)
|
||||
|
||||
qFlag := len(quotation) > 0
|
||||
qFlag := len(quotationProduct) > 0
|
||||
|
||||
//获取备注模板
|
||||
markList, err := l.svcCtx.AllModels.FsQuotationRemarkTemplate.GetAllSelectContent(l.ctx)
|
||||
// markList, err := l.svcCtx.AllModels.FsQuotationRemarkTemplate.GetAllSelectContent(l.ctx)
|
||||
|
||||
var productIds = collect.ArrayColumnTag[int64](CanteenProduct, "product_id")
|
||||
productList, err := l.svcCtx.AllModels.FsProduct.FindAllOnlyByIds(l.ctx, productIds)
|
||||
if err != nil {
|
||||
logx.Error(err)
|
||||
return resp.SetStatus(basic.CodeDbSqlErr)
|
||||
}
|
||||
productListMap := collect.Array2MapByKeyTag[int64](productList, "id")
|
||||
|
||||
//获取size信息
|
||||
var sizeIds = collect.ArrayColumnTag[int64](CanteenProduct, "size_id")
|
||||
sizes, err := l.svcCtx.AllModels.FsProductSize.GetAllSelectIdAndCapacityByIds(l.ctx, sizeIds)
|
||||
if err != nil {
|
||||
logx.Error(err)
|
||||
return resp.SetStatus(basic.CodeDbSqlErr)
|
||||
}
|
||||
sizesMap := collect.Array2MapByKeyTag[int64](sizes, "id")
|
||||
|
||||
//获取价格信息
|
||||
productPrice, err := l.svcCtx.AllModels.FsProductPrice.GetAllSelectBySizeId(l.ctx, sizeIds)
|
||||
if err != nil {
|
||||
logx.Error(err)
|
||||
return resp.SetStatus(basic.CodeDbSqlErr)
|
||||
}
|
||||
productPriceMap := collect.Array2MapByKeyTag[int64](productPrice, "size_id")
|
||||
// product := []map[string]interface{}{}
|
||||
|
||||
product := []map[string]interface{}{}
|
||||
products := []map[string]interface{}{}
|
||||
for _, parr := range list.Array() {
|
||||
|
||||
var priceList []map[string]int64
|
||||
|
@ -195,7 +406,7 @@ func (l *QuotationDetailLogic) QuotationDetail(req *types.RequestQuotationId, us
|
|||
num = 1
|
||||
}
|
||||
|
||||
product = append(product, map[string]interface{}{
|
||||
products = append(products, map[string]interface{}{
|
||||
"id": Id,
|
||||
"s_id": sid,
|
||||
"is_gift": isGift,
|
||||
|
@ -210,5 +421,11 @@ func (l *QuotationDetailLogic) QuotationDetail(req *types.RequestQuotationId, us
|
|||
|
||||
}
|
||||
|
||||
htmlContent, err := l.GetDemoHtml(", quotationProduct)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
log.Println(htmlContent)
|
||||
|
||||
return resp.SetStatus(basic.CodeOK)
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@ import (
|
|||
"fmt"
|
||||
"fusenapi/server/backend/internal/config"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
"fusenapi/initalize"
|
||||
"fusenapi/model/gmodel"
|
||||
|
@ -21,11 +22,11 @@ type ServiceContext struct {
|
|||
}
|
||||
|
||||
func NewServiceContext(c config.Config) *ServiceContext {
|
||||
|
||||
db := initalize.InitMysql(c.SourceMysql).Set("gorm:slow_query_time", time.Second*15)
|
||||
return &ServiceContext{
|
||||
Config: c,
|
||||
MysqlConn: initalize.InitMysql(c.SourceMysql),
|
||||
AllModels: gmodel.NewAllModels(initalize.InitMysql(c.SourceMysql)),
|
||||
AllModels: gmodel.NewAllModels(db),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
35
server/backend/test/basic.go
Normal file
35
server/backend/test/basic.go
Normal file
|
@ -0,0 +1,35 @@
|
|||
package test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"fusenapi/server/backend/internal/config"
|
||||
"fusenapi/server/backend/internal/handler"
|
||||
"fusenapi/server/backend/internal/svc"
|
||||
"log"
|
||||
|
||||
"github.com/zeromicro/go-zero/core/conf"
|
||||
"github.com/zeromicro/go-zero/rest"
|
||||
)
|
||||
|
||||
var testConfigFile = "../etc/backend.yaml"
|
||||
var cnf config.Config
|
||||
var gserver *rest.Server
|
||||
|
||||
func init() {
|
||||
log.SetFlags(log.Llongfile)
|
||||
gserver = GetTestServer()
|
||||
}
|
||||
|
||||
func GetTestServer() *rest.Server {
|
||||
|
||||
conf.MustLoad(testConfigFile, &cnf)
|
||||
|
||||
server := rest.MustNewServer(cnf.RestConf)
|
||||
defer server.Stop()
|
||||
|
||||
ctx := svc.NewServiceContext(cnf)
|
||||
handler.RegisterHandlers(server, ctx)
|
||||
|
||||
fmt.Printf("Starting server at %s:%d...\n", cnf.Host, cnf.Port)
|
||||
return server
|
||||
}
|
29
server/backend/test/quotationdetaillogic_test.go
Normal file
29
server/backend/test/quotationdetaillogic_test.go
Normal file
|
@ -0,0 +1,29 @@
|
|||
package test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
fstests "fusenapi/utils/tests"
|
||||
"log"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestCaseQuotationDetail(t *testing.T) {
|
||||
ses := fstests.GetSesssionWithUserToken(t, gserver, cnf.Host, cnf.Port)
|
||||
|
||||
// 构建新增地址请求体
|
||||
// addrReq := types.RequestQuotationId{
|
||||
// QuotationId: 1003,
|
||||
// }
|
||||
|
||||
// 向服务器发送 POST 请求,新增用户地址
|
||||
tp := ses.Get(fmt.Sprintf("http://%s:%d//quotation/detail", cnf.Host, cnf.Port))
|
||||
tp.QueryParam("id").Set(1003)
|
||||
resp, err := tp.TestExecute(gserver)
|
||||
log.Println(resp.Json())
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
|
||||
log.Println(resp.Json())
|
||||
}
|
314
server/backend/test/tpl_test.go
Normal file
314
server/backend/test/tpl_test.go
Normal file
|
@ -0,0 +1,314 @@
|
|||
package test
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fusenapi/model/gmodel"
|
||||
"fusenapi/utils/collect"
|
||||
"fusenapi/utils/format"
|
||||
"html/template"
|
||||
"log"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestCaseTpl(t *testing.T) {
|
||||
|
||||
priceInfo := []map[string]interface{}{
|
||||
{"Price": "$10", "Num": 100},
|
||||
{"Price": "$20", "Num": 200},
|
||||
{"Price": "$30", "Num": 300},
|
||||
{"Price": "$40", "Num": 400},
|
||||
}
|
||||
|
||||
priceHtml := `
|
||||
{{range $i, $parr := .}}
|
||||
{{if lt $i 3}}
|
||||
<div class="pr-card">
|
||||
<p class="pr">${{$parr.Price}}</p>
|
||||
<p class="num">{{$parr.Num}}<span> Units</span></p>
|
||||
</div>
|
||||
{{else}}
|
||||
<div class="pr-card" style="margin-right: 8px;">
|
||||
<p class="pr">${{$parr.Price}}</p>
|
||||
<p class="num">{{$parr.Num}}<span> Units</span></p>
|
||||
</div>
|
||||
{{end}}
|
||||
{{end}}`
|
||||
|
||||
tpl := template.Must(template.New("demoHtml").Parse(priceHtml))
|
||||
buf := bytes.NewBufferString("")
|
||||
tpl.Execute(buf, priceInfo)
|
||||
html := buf.String()
|
||||
log.Println(html)
|
||||
}
|
||||
|
||||
func Randomproduct() []*gmodel.FsQuotationProduct {
|
||||
var quotationId1 int64 = 1
|
||||
name1 := "T恤"
|
||||
size1 := "S,M,L,XL,XXL"
|
||||
var cycle1 int64 = 7
|
||||
var isGift1 int64 = 0
|
||||
img1 := "https://xxx.jpg"
|
||||
var status1 int64 = 1
|
||||
var ctime1 int64 = 1623311101
|
||||
var sort1 int64 = 1
|
||||
sid1 := "abcd1234"
|
||||
priceInfo1 := `[{"num":500,"price":0.1},{"num":1000,"price":0.06},{"num":1500,"price":0.06}]`
|
||||
remark1 := ""
|
||||
var num1 int64 = 100
|
||||
|
||||
var quotationId2 int64 = 1
|
||||
name2 := "帽子"
|
||||
size2 := "通用"
|
||||
var cycle2 int64 = 3
|
||||
var isGift2 int64 = 1
|
||||
img2 := "https://xxx.jpg"
|
||||
var status2 int64 = 1
|
||||
var ctime2 int64 = 1623311102
|
||||
var sort2 int64 = 2
|
||||
sid2 := "abcd1235"
|
||||
priceInfo2 := `[{"num":500,"price":0.1},{"num":1000,"price":0.06},{"num":1500,"price":0.06}]`
|
||||
remark2 := ""
|
||||
var num2 int64 = 50
|
||||
|
||||
var quotationId3 int64 = 2
|
||||
name3 := "水壶"
|
||||
size3 := "350ml,500ml,650ml"
|
||||
var cycle3 int64 = 14
|
||||
var isGift3 int64 = 0
|
||||
img3 := "https://xxx.jpg"
|
||||
var status3 int64 = 1
|
||||
var ctime3 int64 = 1623311103
|
||||
var sort3 int64 = 1
|
||||
sid3 := "abcd1236"
|
||||
priceInfo3 := `[{"num":500,"price":0.1},{"num":1000,"price":0.06},{"num":1500,"price":0.06}]`
|
||||
remark3 := ""
|
||||
var num3 int64 = 200
|
||||
|
||||
var quotationId4 int64 = 2
|
||||
name4 := "手机壳"
|
||||
size4 := "iPhoneX,iPhoneXS,iPhoneXR"
|
||||
var cycle4 int64 = 5
|
||||
var isGift4 int64 = 1
|
||||
img4 := "https://xxx.jpg"
|
||||
var status4 int64 = 1
|
||||
var ctime4 int64 = 1623311104
|
||||
var sort4 int64 = 2
|
||||
sid4 := "abcd1237"
|
||||
priceInfo4 := `[{"num":500,"price":0.1},{"num":1000,"price":0.06},{"num":1500,"price":0.06}]`
|
||||
remark4 := "可定制颜料颜色"
|
||||
var num4 int64 = 150
|
||||
|
||||
products := []*gmodel.FsQuotationProduct{
|
||||
&gmodel.FsQuotationProduct{
|
||||
Id: 1,
|
||||
QuotationId: "ationId1,
|
||||
Name: &name1,
|
||||
Size: &size1,
|
||||
Cycle: &cycle1,
|
||||
IsGift: &isGift1,
|
||||
Img: &img1,
|
||||
Status: &status1,
|
||||
Ctime: &ctime1,
|
||||
Sort: &sort1,
|
||||
Sid: &sid1,
|
||||
PriceInfo: &priceInfo1,
|
||||
Remark: &remark1,
|
||||
Num: &num1,
|
||||
},
|
||||
&gmodel.FsQuotationProduct{
|
||||
Id: 2,
|
||||
QuotationId: "ationId2,
|
||||
Name: &name2,
|
||||
Size: &size2,
|
||||
Cycle: &cycle2,
|
||||
IsGift: &isGift2,
|
||||
Img: &img2,
|
||||
Status: &status2,
|
||||
Ctime: &ctime2,
|
||||
Sort: &sort2,
|
||||
Sid: &sid2,
|
||||
PriceInfo: &priceInfo2,
|
||||
Remark: &remark2,
|
||||
Num: &num2,
|
||||
},
|
||||
&gmodel.FsQuotationProduct{
|
||||
Id: 3,
|
||||
QuotationId: "ationId3,
|
||||
Name: &name3,
|
||||
Size: &size3,
|
||||
Cycle: &cycle3,
|
||||
IsGift: &isGift3,
|
||||
Img: &img3,
|
||||
Status: &status3,
|
||||
Ctime: &ctime3,
|
||||
Sort: &sort3,
|
||||
Sid: &sid3,
|
||||
PriceInfo: &priceInfo3,
|
||||
Remark: &remark3,
|
||||
Num: &num3,
|
||||
},
|
||||
&gmodel.FsQuotationProduct{
|
||||
Id: 4,
|
||||
QuotationId: "ationId4,
|
||||
Name: &name4,
|
||||
Size: &size4,
|
||||
Cycle: &cycle4,
|
||||
IsGift: &isGift4,
|
||||
Img: &img4,
|
||||
Status: &status4,
|
||||
Ctime: &ctime4,
|
||||
Sort: &sort4,
|
||||
Sid: &sid4,
|
||||
PriceInfo: &priceInfo4,
|
||||
Remark: &remark4,
|
||||
Num: &num4,
|
||||
},
|
||||
}
|
||||
|
||||
return products
|
||||
}
|
||||
|
||||
func TestTpl2(t *testing.T) {
|
||||
|
||||
products := Randomproduct()
|
||||
|
||||
tplcontent := `
|
||||
|
||||
{{$product_num := len .products}}
|
||||
{{$page := 3}}
|
||||
{{$page_total := add $page $product_num}}
|
||||
{{range $arr := .products}}
|
||||
{{$price := json_decode $arr.price_info}}
|
||||
{{$price_html := .priceHtml}}
|
||||
|
||||
{{$price_html}}
|
||||
|
||||
{{if gt $arr.is_gift 0 }}{{/* 赠品 */}}
|
||||
// 赠品
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 30px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 12px; line-height: 32px;">{{$arr.name}}</p>
|
||||
<p class="f-b" style="font-size: 25px; font-weight: 800;line-height: 19px;">{{$arr.size}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 611px;margin-bottom: 32px; overflow: hidden;">
|
||||
<div class="img" style="background-image: url({{$arr.img}});"></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="pr-card big">
|
||||
<p class="pr">FREE!</p>
|
||||
<p class="num">{{$arr.num}}<span> Units</span></p>
|
||||
</div>
|
||||
<div>
|
||||
<div class="card-box" style="display: inline-block;width: 183px;line-height: 36px;padding-left: 16px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">Lead Time</div>
|
||||
<div class="card-box" style="display: inline-block;width: 183px;height: 52px; padding-left: 15px;margin-bottom: 8px;background-color: #E0E2EB; font-weight: 600;">
|
||||
<span style="font-size: 35px;line-height: 52px;">{{$arr.cycle}}</span><span style="font-size: 26px;line-height: 52px;">Days</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Design</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Storage</span>
|
||||
</div>
|
||||
<div class="card-box more-card" style="margin-bottom: 0;">
|
||||
<span class="free">FREE </span><span class="text">Shipping</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{else}}{{/* 非赠品 */}}
|
||||
{{if $arr.size}}
|
||||
// 有尺寸的
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 30px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 12px; line-height: 32px;">{{$arr.name}}</p>
|
||||
<p class="f-b" style="font-size: 25px; font-weight: 800;line-height: 19px;">{{$arr.size}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 611px;margin-bottom: 32px; overflow: hidden;">
|
||||
<div class="img"
|
||||
style="background-image: url({{$arr.img}});"></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="float: left; width: 530px;line-height: 36px;padding-left: 19px;margin-right: 8px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">Unit Price (Tax included)</div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;line-height: 36px;padding-left: 16px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">
|
||||
Lead Time</div>
|
||||
{{$price_html}}
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;height: 52px; padding-left: 15px;margin-bottom: 8px;background-color: #E0E2EB; font-weight: 600;">
|
||||
<span style="font-size: 35px;line-height: 52px;">{{$arr.cycle}}</span><span
|
||||
style="font-size: 26px;line-height: 52px;">Days</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Design</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Storage</span>
|
||||
</div>
|
||||
<div class="card-box more-card" style="margin-bottom: 0;">
|
||||
<span class="free">FREE </span><span class="text">Shipping</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{else}}
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 32px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 3px; line-height: 32px;">
|
||||
{{$arr.name}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 641px;margin-bottom: 31px; overflow: hidden;">
|
||||
<div class="img" style="background-image: url({{$arr.img}});">
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="float: left;width: 530px;line-height: 36px;padding-left: 19px;margin-right: 8px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">
|
||||
Unit Price (Tax included)</div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;line-height: 36px;padding-left: 16px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">
|
||||
Lead Time</div>
|
||||
{{$price_html}}
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;height: 52px; padding-left: 15px;margin-bottom: 8px;background-color: #E0E2EB; font-weight: 600;">
|
||||
<span style="font-size: 35px;line-height: 52px;">{{$arr.cycle}}</span><span
|
||||
style="font-size: 26px;line-height: 52px;">Days</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Design</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Storage</span>
|
||||
</div>
|
||||
<div class="card-box more-card" style="margin-bottom: 0;">
|
||||
<span class="free">FREE </span><span class="text">Shipping</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
{{end}}
|
||||
<div class="page-box" style="background-color: rgba(125, 125, 125, 0.16);color: #000;text-align: center;height: 50px;line-height: 50px;margin-top: 30px;">{{$page}}/{{$page_total}}</div>
|
||||
{{$page = add $page 1}}
|
||||
{{end}} `
|
||||
tpl := template.New("demo")
|
||||
tpl.Funcs(format.TemplateFuncMap)
|
||||
tpl = template.Must(tpl.Parse(tplcontent))
|
||||
buf := bytes.NewBufferString("")
|
||||
|
||||
tpl.Execute(buf, map[string]interface{}{"products": collect.StructSliceJson2Maps(products)})
|
||||
html := buf.String()
|
||||
log.Println(html)
|
||||
}
|
129
template/products.tpl
Normal file
129
template/products.tpl
Normal file
|
@ -0,0 +1,129 @@
|
|||
{{$product_num := len .products}}
|
||||
{{$page := 3}}
|
||||
{{$page_total := add $page $product_num}}
|
||||
{{range $arr := .products}}
|
||||
{{$price := json_decode $arr.price_info}}
|
||||
{{$price_html := .priceHtml}}
|
||||
|
||||
{{$price_html}}
|
||||
|
||||
{{if gt $arr.is_gift 0 }}{{/* 赠品 */}}
|
||||
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 30px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 12px; line-height: 32px;">{{$arr.name}}</p>
|
||||
<p class="f-b" style="font-size: 25px; font-weight: 800;line-height: 19px;">{{$arr.size}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 611px;margin-bottom: 32px; overflow: hidden;">
|
||||
<div class="img" style="background-image: url({{$arr.img}});"></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="pr-card big">
|
||||
<p class="pr">FREE!</p>
|
||||
<p class="num">{{$arr.num}}<span> Units</span></p>
|
||||
</div>
|
||||
<div>
|
||||
<div class="card-box" style="display: inline-block;width: 183px;line-height: 36px;padding-left: 16px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">Lead Time</div>
|
||||
<div class="card-box" style="display: inline-block;width: 183px;height: 52px; padding-left: 15px;margin-bottom: 8px;background-color: #E0E2EB; font-weight: 600;">
|
||||
<span style="font-size: 35px;line-height: 52px;">{{$arr.cycle}}</span><span style="font-size: 26px;line-height: 52px;">Days</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Design</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Storage</span>
|
||||
</div>
|
||||
<div class="card-box more-card" style="margin-bottom: 0;">
|
||||
<span class="free">FREE </span><span class="text">Shipping</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{else}}{{/* 非赠品 */}}
|
||||
{{if $arr.size}}
|
||||
// 有尺寸的
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 30px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 12px; line-height: 32px;">{{$arr.name}}</p>
|
||||
<p class="f-b" style="font-size: 25px; font-weight: 800;line-height: 19px;">{{$arr.size}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 611px;margin-bottom: 32px; overflow: hidden;">
|
||||
<div class="img"
|
||||
style="background-image: url({{$arr.img}});"></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="float: left; width: 530px;line-height: 36px;padding-left: 19px;margin-right: 8px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">Unit Price (Tax included)</div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;line-height: 36px;padding-left: 16px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">
|
||||
Lead Time</div>
|
||||
{{$price_html}}
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;height: 52px; padding-left: 15px;margin-bottom: 8px;background-color: #E0E2EB; font-weight: 600;">
|
||||
<span style="font-size: 35px;line-height: 52px;">{{$arr.cycle}}</span><span
|
||||
style="font-size: 26px;line-height: 52px;">Days</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Design</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Storage</span>
|
||||
</div>
|
||||
<div class="card-box more-card" style="margin-bottom: 0;">
|
||||
<span class="free">FREE </span><span class="text">Shipping</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{else}}
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 32px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 3px; line-height: 32px;">
|
||||
{{$arr.name}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 641px;margin-bottom: 31px; overflow: hidden;">
|
||||
<div class="img" style="background-image: url({{$arr.img}});">
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="float: left;width: 530px;line-height: 36px;padding-left: 19px;margin-right: 8px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">
|
||||
Unit Price (Tax included)</div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;line-height: 36px;padding-left: 16px;margin-bottom: 4px;background-color: #C2C5CB;font-size: 18px; font-weight: 500;">
|
||||
Lead Time</div>
|
||||
{{$price_html}}
|
||||
<div>
|
||||
<div class="card-box"
|
||||
style="display: inline-block;width: 183px;height: 52px; padding-left: 15px;margin-bottom: 8px;background-color: #E0E2EB; font-weight: 600;">
|
||||
<span style="font-size: 35px;line-height: 52px;">{{$arr.cycle}}</span><span
|
||||
style="font-size: 26px;line-height: 52px;">Days</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Design</span>
|
||||
</div>
|
||||
<div class="card-box more-card">
|
||||
<span class="free">FREE </span><span class="text">Storage</span>
|
||||
</div>
|
||||
<div class="card-box more-card" style="margin-bottom: 0;">
|
||||
<span class="free">FREE </span><span class="text">Shipping</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
{{end}}
|
||||
<div class="page-box" style="background-color: rgba(125, 125, 125, 0.16);color: #000;text-align: center;height: 50px;line-height: 50px;margin-top: 30px;">{{$page}}/{{$page_total}}</div>
|
||||
{{$page = add $page 1}}
|
||||
{{end}}
|
368
template/return_html.tpl
Normal file
368
template/return_html.tpl
Normal file
|
@ -0,0 +1,368 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>quotation</title>
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: \'Montserrat\';
|
||||
src: url(\'https://fusenapi.kayue.cn:8010/storage/font/Montserrat-VariableFont_wght.ttf\');
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
#quotation-pdf-box {
|
||||
font-family: \'Montserrat\';
|
||||
image-rendering: -moz-crisp-edges;
|
||||
image-rendering: -o-crisp-edges;
|
||||
image-rendering: -webkit-optimize-contrast;
|
||||
image-rendering: crisp-edges;
|
||||
-ms-interpolation-mode: nearest-neighbor;
|
||||
-webkit-font-smooting: antialiased;
|
||||
}
|
||||
|
||||
#quotation-pdf-box div {
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#quotation-pdf-box p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .box {
|
||||
margin: 0 auto;
|
||||
width: 722px;
|
||||
height: 938px;
|
||||
overflow: hidden;
|
||||
padding-top: 55px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .box:last-child {
|
||||
padding-top: 110px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .logo {
|
||||
height: 27px;
|
||||
width: 118px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .img-box {
|
||||
background-color: #a4a4a4;
|
||||
border-radius: 15px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .img-box .img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .text-box {
|
||||
background-color: #ff7f00;
|
||||
border-radius: 13px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .page-box {
|
||||
background-color: rgba(125, 125, 125, 0.16);
|
||||
text-align: center;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .card-box {
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card {
|
||||
float: left;
|
||||
width: 175px;
|
||||
height: 156px;
|
||||
margin-right: 3px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card.big {
|
||||
width: 530px;
|
||||
height: 198px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card::after {
|
||||
border-bottom: 1px dashed #fff;
|
||||
content: "";
|
||||
width: 100%;
|
||||
top: 97.67px;
|
||||
left: 0;
|
||||
height: 1px;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card.big::after {
|
||||
top: 120px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card .pr {
|
||||
width: 100%;
|
||||
height: 98.67px;
|
||||
border-radius: 7px;
|
||||
background-color: #ff7f00;
|
||||
line-height: 97.67px;
|
||||
font-size: 50px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card.big .pr {
|
||||
font-size: 97px;
|
||||
font-weight: 850;
|
||||
line-height: 120.85px;
|
||||
height: 120.85px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card .num {
|
||||
width: 100%;
|
||||
height: 58.31px;
|
||||
border-radius: 7px;
|
||||
background-color: #ff7f00;
|
||||
line-height: 58.31px;
|
||||
font-size: 26px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card.big .num {
|
||||
font-size: 58px;
|
||||
font-weight: 700;
|
||||
line-height: 76.1px;
|
||||
height: 76.1px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card .num span {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .pr-card.big .num span {
|
||||
font-size: 38px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .more-card {
|
||||
display: inline-block;
|
||||
width: 183px;
|
||||
padding-left: 16px;
|
||||
margin-bottom: 4px;
|
||||
background-color: #47AA6C;
|
||||
line-height: 30px;
|
||||
font-size: 16px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .more-card .free {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .more-card .text {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .logos-list {
|
||||
text-align: center;
|
||||
height: 233px;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .logos-list .logo-item {
|
||||
float: left;
|
||||
width: 93px;
|
||||
height: 64px;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 18px;
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
#quotation-pdf-box .logos-list .logo-item:nth-child(7n) {
|
||||
margin-right: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="quotation-pdf-box">
|
||||
<!-- 首页 -->
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 31px;">
|
||||
<p class="f-m" style="font-size: 40px; font-weight: 600; margin-bottom: 4px; line-height: 39px;">
|
||||
Custom
|
||||
Packaging For</p>
|
||||
<p class="f-b" style="font-size: 60px; font-weight: 600;line-height: 54px;">{{$info.canteen_name}}</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div class="img-box" style="height: 558px;margin-bottom: 30px; overflow: hidden;">
|
||||
<div class="img"
|
||||
style="background-image: url({{$info.cover}});">
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box" style="padding: 27px;padding-right: 21px;">
|
||||
<p class="f-b" style="margin-bottom: 16px; font-size: 23px;line-height: 24px;font-weight: 800;">
|
||||
Hi, I\'m
|
||||
Victor from Fusenpack.</p>
|
||||
<p class="f-b" style="margin-bottom: 19px; font-weight:300; font-size: 16px; line-height: 20px;">We
|
||||
offer simple custom packaging solutions for restaurants with a minimum order quantity that\'s 5X
|
||||
lower than regular suppliers. Check out our custom designs and prices on the following pages.
|
||||
Contact me at if you have any questions. Thanks!</p>
|
||||
<div style="margin-bottom: 6px;">
|
||||
<div
|
||||
style="width: 18px; height: 18px; margin-right: 9px; display: inline-block;position: relative;">
|
||||
<img style="position: absolute;top: 4px;left: 0;"
|
||||
src="https://fusenapi.kayue.cn:8010/storage/pdf/phone.svg" alt="">
|
||||
</div>
|
||||
<p class="f-b" style="font-size: 19px; display: inline-block; line-height: 13px;font-weight: 500;">
|
||||
{{$saler.phone}}</p>
|
||||
</div>
|
||||
<div>
|
||||
<div
|
||||
style="width: 18px; height: 18px; margin-right: 9px; display: inline-block; position: relative;">
|
||||
<img style="position: absolute;top: 3px;left: 0;"
|
||||
src="https://fusenapi.kayue.cn:8010/storage/pdf/email.svg" alt="">
|
||||
</div>
|
||||
<p class="f-b" style="font-size: 19px; display: inline-block; line-height: 17px;font-weight: 500;">
|
||||
{{$saler.email}}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 首页结束 -->
|
||||
<!-- <div class="page-box">1/6</div> -->
|
||||
<!-- 对比页 -->
|
||||
<div class="box">
|
||||
<div style="position: relative; margin-bottom: 33px;">
|
||||
<p class="f-m" style="font-size: 39px; font-weight: 800; margin-bottom: 4px; line-height: 39px;">
|
||||
Why Custom Packaging?</p>
|
||||
<div class="logo">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
</div>
|
||||
<div style="height: 865px; overflow: hidden; position: relative;">
|
||||
<div style="width: 100%;height: 100%;">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/page_img_1.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 对比页结束 -->
|
||||
<!-- <div class="page-box">2/6</div> -->
|
||||
<!-- 其他物料页 -->
|
||||
<!-- 其他物料页结束 -->
|
||||
<!-- <div class="page-box">3/6</div> -->
|
||||
<!-- 餐具套装页 -->
|
||||
<!-- 餐具套装页结束 -->
|
||||
<!-- <div class="page-box">4/6</div> -->
|
||||
<!-- 服装页 -->
|
||||
<!-- 服装页结束 -->
|
||||
<!-- <div class="page-box">5/6</div> -->
|
||||
{{$html}}
|
||||
<!-- 尾页 -->
|
||||
<div class="box">
|
||||
<div style="height: 404px; overflow: hidden;position: relative;">
|
||||
<div class="logo" style="height: 42px;width: 191px;left: 0;top: 0;">
|
||||
<img src="https://fusenapi.kayue.cn:8010/storage/pdf/logo.svg" alt="logo">
|
||||
</div>
|
||||
<div
|
||||
style="width: 100%;height: 100%;background: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_img_2.png\') center no-repeat;background-size: contain;">
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box" style="padding: 25px 23px 25px 31px;margin-bottom: 44px;">
|
||||
<p class="f-b" style="margin-bottom: 34px; font-weight: 500; font-size: 16.15px; line-height: 20px;">
|
||||
There\'s more! If you don\'t see what you need on these pages, please contact us to inquire about
|
||||
additional items.</p>
|
||||
<p style="font-size: 26px;font-weight: 700;line-height: 22px;margin-bottom: 10px;">{{$saler.name}}</p>
|
||||
<div style="margin-bottom: 6px;">
|
||||
<div
|
||||
style="width: 18px; height: 18px; margin-right: 9px; display: inline-block;position: relative;">
|
||||
<img style="position: absolute;top: 4px;left: 0;"
|
||||
src="https://fusenapi.kayue.cn:8010/storage/pdf/phone.svg" alt="">
|
||||
</div>
|
||||
<p class="f-b" style="font-size: 19px; display: inline-block; line-height: 13px;font-weight: 500;">
|
||||
{{$saler.phone}}</p>
|
||||
</div>
|
||||
<div>
|
||||
<div
|
||||
style="width: 18px; height: 18px; margin-right: 9px; display: inline-block; position: relative;">
|
||||
<img style="position: absolute;top: 3px;left: 0;"
|
||||
src="https://fusenapi.kayue.cn:8010/storage/pdf/email.svg" alt="">
|
||||
</div>
|
||||
<p class="f-b" style="font-size: 19px; display: inline-block; line-height: 17px;font-weight: 500;">
|
||||
{{$saler.email}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box"
|
||||
style="padding: 0 31px;display:inline-block;line-height: 35px;margin-bottom: 15px;font-size: 19px;font-weight: 700;text-align: center;border-radius: 5px;">
|
||||
Our Customers:</div>
|
||||
<div class="logos-list">
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_1.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_2.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_3.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_4.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_5.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_6.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_7.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_8.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_9.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_10.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_11.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_12.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_13.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_14.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_15.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_16.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_17.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_18.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_19.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_20.png\');"></div>
|
||||
<div class="logo-item"
|
||||
style="background-image: url(\'https://fusenapi.kayue.cn:8010/storage/pdf/page_logo_21.png\');"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 尾页结束 -->
|
||||
<!-- <div class="page-box">6/6</div> -->
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -6,12 +6,24 @@ import (
|
|||
)
|
||||
|
||||
func ArrayColumn[R any, T any](arr []T, column string) []R {
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}()
|
||||
|
||||
var result []R
|
||||
s := reflect.ValueOf(arr)
|
||||
|
||||
for i := 0; i < s.Len(); i++ {
|
||||
e := s.Index(i)
|
||||
if e.Kind() == reflect.Ptr {
|
||||
e = e.Elem()
|
||||
}
|
||||
k := e.FieldByName(column)
|
||||
if k.Kind() == reflect.Ptr {
|
||||
k = k.Elem()
|
||||
}
|
||||
result = append(result, k.Interface().(R))
|
||||
}
|
||||
|
||||
|
@ -19,20 +31,36 @@ func ArrayColumn[R any, T any](arr []T, column string) []R {
|
|||
}
|
||||
|
||||
func ArrayColumnTag[R any, T any](arrSrc []T, tag string) []R {
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}()
|
||||
|
||||
var result []R
|
||||
arr := reflect.ValueOf(arrSrc)
|
||||
if arr.Len() == 0 {
|
||||
return result
|
||||
}
|
||||
|
||||
eleType := arr.Index(0).Elem().Type()
|
||||
ele := arr.Index(0)
|
||||
if ele.Kind() == reflect.Ptr {
|
||||
ele = ele.Elem()
|
||||
}
|
||||
eleType := ele.Type()
|
||||
|
||||
for j := 0; j < eleType.NumField(); j++ {
|
||||
if value, ok := eleType.Field(j).Tag.Lookup("json"); ok && value == tag {
|
||||
|
||||
for i := 0; i < arr.Len(); i++ {
|
||||
srcv := arr.Index(i)
|
||||
fv := srcv.Elem().Field(j)
|
||||
if srcv.Kind() == reflect.Ptr {
|
||||
srcv = srcv.Elem()
|
||||
}
|
||||
fv := srcv.Field(j)
|
||||
if fv.Kind() == reflect.Ptr {
|
||||
fv = fv.Elem()
|
||||
}
|
||||
result = append(result, fv.Interface().(R))
|
||||
}
|
||||
|
||||
|
@ -44,6 +72,7 @@ func ArrayColumnTag[R any, T any](arrSrc []T, tag string) []R {
|
|||
}
|
||||
|
||||
func ArrayIndex[T any](arr []T, index int) (result T, ok bool) {
|
||||
|
||||
if index < len(arr) {
|
||||
result = arr[index]
|
||||
ok = true
|
||||
|
@ -54,6 +83,12 @@ func ArrayIndex[T any](arr []T, index int) (result T, ok bool) {
|
|||
}
|
||||
|
||||
func ArrayString2Int(arr interface{}) (result []int64) {
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}()
|
||||
|
||||
for _, a := range arr.([]string) {
|
||||
v, err := strconv.ParseInt(a, 10, 64)
|
||||
if err != nil {
|
||||
|
@ -65,6 +100,12 @@ func ArrayString2Int(arr interface{}) (result []int64) {
|
|||
}
|
||||
|
||||
func Array2MapByKey[KEY comparable, VALUE any](arrSrc []VALUE, fieldName string) (result map[KEY]VALUE) {
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}()
|
||||
|
||||
result = make(map[KEY]VALUE)
|
||||
arr := reflect.ValueOf(arrSrc)
|
||||
|
||||
|
@ -80,6 +121,12 @@ func Array2MapByKey[KEY comparable, VALUE any](arrSrc []VALUE, fieldName string)
|
|||
|
||||
func Array2MapByKeyTag[KEY comparable, VALUE any](arrSrc []VALUE, tag string) (result map[KEY]VALUE) {
|
||||
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}()
|
||||
|
||||
arr := reflect.ValueOf(arrSrc)
|
||||
|
||||
if arr.Len() == 0 {
|
||||
|
@ -87,14 +134,27 @@ func Array2MapByKeyTag[KEY comparable, VALUE any](arrSrc []VALUE, tag string) (r
|
|||
}
|
||||
result = make(map[KEY]VALUE)
|
||||
|
||||
eleType := arr.Index(0).Elem().Type()
|
||||
ele := arr.Index(0)
|
||||
if ele.Kind() == reflect.Ptr {
|
||||
ele = ele.Elem()
|
||||
}
|
||||
eleType := ele.Type()
|
||||
|
||||
for j := 0; j < eleType.NumField(); j++ {
|
||||
if value, ok := eleType.Field(j).Tag.Lookup("json"); ok && value == tag {
|
||||
|
||||
for i := 0; i < arr.Len(); i++ {
|
||||
srcv := arr.Index(i)
|
||||
fv := srcv.Elem().Field(j)
|
||||
var fv reflect.Value
|
||||
if srcv.Kind() == reflect.Ptr {
|
||||
fv = srcv.Elem().Field(j)
|
||||
} else {
|
||||
fv = srcv.Field(j)
|
||||
}
|
||||
|
||||
if fv.Kind() == reflect.Ptr {
|
||||
fv = fv.Elem()
|
||||
}
|
||||
k := fv.Interface().(KEY)
|
||||
result[k] = srcv.Interface().(VALUE)
|
||||
}
|
||||
|
@ -105,3 +165,40 @@ func Array2MapByKeyTag[KEY comparable, VALUE any](arrSrc []VALUE, tag string) (r
|
|||
|
||||
return result
|
||||
}
|
||||
|
||||
func StructJson2Map(s interface{}) map[string]interface{} {
|
||||
t := reflect.TypeOf(s)
|
||||
v := reflect.ValueOf(s)
|
||||
|
||||
var data = make(map[string]interface{})
|
||||
for i := 0; i < t.NumField(); i++ {
|
||||
field := t.Field(i)
|
||||
if field.Tag == "" {
|
||||
continue
|
||||
}
|
||||
tag := field.Tag.Get("json")
|
||||
val := v.Field(i)
|
||||
if val.Kind() == reflect.Ptr {
|
||||
val = val.Elem()
|
||||
}
|
||||
data[tag] = val.Interface()
|
||||
}
|
||||
return data
|
||||
}
|
||||
|
||||
func StructSliceJson2Maps(s interface{}) []map[string]interface{} {
|
||||
slice := reflect.ValueOf(s)
|
||||
var maps []map[string]interface{}
|
||||
|
||||
for i := 0; i < slice.Len(); i++ {
|
||||
s := slice.Index(i)
|
||||
|
||||
if s.Kind() == reflect.Ptr {
|
||||
s = s.Elem()
|
||||
}
|
||||
structValue := s.Interface()
|
||||
m := StructJson2Map(structValue)
|
||||
maps = append(maps, m)
|
||||
}
|
||||
return maps
|
||||
}
|
||||
|
|
20
utils/format/template.go
Normal file
20
utils/format/template.go
Normal file
|
@ -0,0 +1,20 @@
|
|||
package format
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"text/template"
|
||||
)
|
||||
|
||||
var TemplateFuncMap = template.FuncMap{
|
||||
"add": func(a, b int) int {
|
||||
return a + b
|
||||
},
|
||||
"json_decode": func(o interface{}) interface{} {
|
||||
var r []map[string]interface{}
|
||||
err := json.Unmarshal([]byte(o.(string)), &r)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return r
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue
Block a user