zhuyiyi vor 3 Monaten
Ursprung
Commit
72dca49bd2

+ 3 - 1
src/main/java/lingtao/net/controller/ProductController.java

@@ -103,7 +103,9 @@ public class ProductController {
         product.setRole(user.getRole());
 
         if ("菜单".equals(product.getProTypeLabel())) {
-            product.setSize(product.getSize1().replace(",", ""));
+            if (product.getSize1() != null) {
+                product.setSize(product.getSize1().replace(",", ""));
+            }
             String s = request.getParameter("kindValue5");
             product.setKind1Value(s);
             product.setSize(request.getParameter("ui_menu_size"));

+ 120 - 50
src/main/java/lingtao/net/service/ProductService.java

@@ -4623,70 +4623,140 @@ public class ProductService {
                 }
                 return priceList;
             case "透卡":
-
                 return getPETPrice(dto, width, length);
             case "澜达海报":
-                //铜版纸200g (售价)
-                prices = new int[][]{
-                        {90, 90, 90, 90, 90, 94, 94, 94, 94},
-                        {100, 100, 100, 100, 100, 187, 187, 187, 187},
-                        {140, 140, 140, 140, 140, 280, 280, 280, 280},
-                        {187, 187, 187, 187, 187, 374, 374, 374, 374},
-                        {234, 234, 234, 234, 234, 467, 467, 467, 467},
-                        {467, 467, 467, 467, 467, 934, 934, 934, 934},
-                        {934, 934, 934, 934, 934, 1867, 1867, 1867, 1867},
-                        {2334, 2334, 2334, 2334, 2334, 4667, 4667, 4667, 4667},
-                        {4667, 4667, 4667, 4667, 4667, 9334, 9334, 9334, 9334},
-                        {9334, 9334, 9334, 9334, 9334, 18667, 18667, 18667, 18667},
-                        {23334, 23334, 23334, 23334, 23334, 46667, 46667, 46667, 46667},
-                };
-                if ("2".equals(dto.getKind())) {
-                    prices = new int[][]{
-                            {90, 90, 90, 90, 90, 107, 107, 107, 107},
-                            {100, 107, 107, 107, 107, 213, 213, 213, 213},
-                            {120, 160, 160, 160, 160, 320, 320, 320, 320},
-                            {150, 213, 213, 213, 213, 427, 427, 427, 427},
-                            {139, 267, 267, 267, 267, 533, 533, 533, 533},
-                            {267, 533, 533, 533, 533, 1067, 1067, 1067, 1067},
-                            {533, 1067, 1067, 1067, 1067, 2133, 2133, 2133, 2133},
-                            {1333, 2667, 2667, 2667, 2667, 5333, 5333, 5333, 5333},
-                            {2667, 5333, 5333, 5333, 5333, 10667, 10667, 10667, 10667},
-                            {5333, 10667, 10667, 10667, 10667, 21333, 21333, 21333, 21333},
-                            {13333, 26667, 26667, 26667, 26667, 53333, 53333, 53333, 53333},
-                    };
-                }
-                if ("3".equals(dto.getKind())) {
-                    prices = new int[][]{
-                            {90, 90, 90, 90, 90, 150, 150, 150, 150},
-                            {100, 140, 140, 150, 150, 300, 300, 300, 300},
-                            {110, 207, 207, 223, 223, 447, 447, 447, 447},
-                            {140, 277, 277, 300, 300, 597, 597, 597, 597},
-                            {180, 347, 347, 373, 373, 747, 747, 747, 747},
-                            {347, 693, 693, 747, 747, 1493, 1493, 1493, 1493},
-                            {693, 1387, 1387, 1493, 1493, 2987, 2987, 2987, 2987},
-                            {1733, 3467, 3467, 3733, 3733, 7467, 7467, 7467, 7467},
-                            {3467, 6933, 6933, 7467, 7467, 14933, 14933, 14933, 14933},
-                            {6933, 13867, 13867, 14933, 14933, 29867, 29867, 29867, 29867},
-                            {17333, 34667, 34667, 37333, 37333, 74667, 74667, 74667, 74667},
-                    };
-                }
-                count_list = new int[]{10, 20, 30, 40, 50, 100, 200, 500, 1000, 2000, 5000};
-                areas = new double[]{1197, 1716, 2394, 2596, 3430, 3467.1, 4788, 5192, 6860};
-                area = length * width;
-
-                return getAreaCenterPrice(count_list, count, area, prices, areas, number);
+                return getDalanPrice(dto, width, length);
             case "水标":
                 return getShuibiaoPrice(dto, length, width);
             case "镭射吊牌":
                 return getLeiseDiaoPrice(dto, length, width);
             case "刻字车贴":
                 return getCheTiePrice(dto, length, width);
+            case "胶带":
+                return getJiadaoPrice(dto, length, width);
             default:
                 break;
         }
         return null;
     }
 
+    private List<Product> getDalanPrice(Product dto, Double width, Double length) {
+        //铜版纸200g (售价)
+        int[][] prices = new int[][]{
+                {90, 90, 90, 90, 90, 94, 94, 94, 94},
+                {100, 100, 100, 100, 100, 187, 187, 187, 187},
+                {140, 140, 140, 140, 140, 280, 280, 280, 280},
+                {187, 187, 187, 187, 187, 374, 374, 374, 374},
+                {234, 234, 234, 234, 234, 467, 467, 467, 467},
+                {467, 467, 467, 467, 467, 934, 934, 934, 934},
+                {934, 934, 934, 934, 934, 1867, 1867, 1867, 1867},
+                {2334, 2334, 2334, 2334, 2334, 4667, 4667, 4667, 4667},
+                {4667, 4667, 4667, 4667, 4667, 9334, 9334, 9334, 9334},
+                {9334, 9334, 9334, 9334, 9334, 18667, 18667, 18667, 18667},
+                {23334, 23334, 23334, 23334, 23334, 46667, 46667, 46667, 46667},
+        };
+        if ("2".equals(dto.getKind())) {
+            prices = new int[][]{
+                    {90, 90, 90, 90, 90, 107, 107, 107, 107},
+                    {100, 107, 107, 107, 107, 213, 213, 213, 213},
+                    {120, 160, 160, 160, 160, 320, 320, 320, 320},
+                    {150, 213, 213, 213, 213, 427, 427, 427, 427},
+                    {139, 267, 267, 267, 267, 533, 533, 533, 533},
+                    {267, 533, 533, 533, 533, 1067, 1067, 1067, 1067},
+                    {533, 1067, 1067, 1067, 1067, 2133, 2133, 2133, 2133},
+                    {1333, 2667, 2667, 2667, 2667, 5333, 5333, 5333, 5333},
+                    {2667, 5333, 5333, 5333, 5333, 10667, 10667, 10667, 10667},
+                    {5333, 10667, 10667, 10667, 10667, 21333, 21333, 21333, 21333},
+                    {13333, 26667, 26667, 26667, 26667, 53333, 53333, 53333, 53333},
+            };
+        }
+        if ("3".equals(dto.getKind())) {
+            prices = new int[][]{
+                    {90, 90, 90, 90, 90, 150, 150, 150, 150},
+                    {100, 140, 140, 150, 150, 300, 300, 300, 300},
+                    {110, 207, 207, 223, 223, 447, 447, 447, 447},
+                    {140, 277, 277, 300, 300, 597, 597, 597, 597},
+                    {180, 347, 347, 373, 373, 747, 747, 747, 747},
+                    {347, 693, 693, 747, 747, 1493, 1493, 1493, 1493},
+                    {693, 1387, 1387, 1493, 1493, 2987, 2987, 2987, 2987},
+                    {1733, 3467, 3467, 3733, 3733, 7467, 7467, 7467, 7467},
+                    {3467, 6933, 6933, 7467, 7467, 14933, 14933, 14933, 14933},
+                    {6933, 13867, 13867, 14933, 14933, 29867, 29867, 29867, 29867},
+                    {17333, 34667, 34667, 37333, 37333, 74667, 74667, 74667, 74667},
+            };
+        }
+        int[] count_list = new int[]{10, 20, 30, 40, 50, 100, 200, 500, 1000, 2000, 5000};
+        double[] areas = new double[]{1197, 1716, 2394, 2596, 3430, 3467.1, 4788, 5192, 6860};
+        double area = length * width;
+
+        return getAreaCenterPrice(count_list, dto.getCount(), area, prices, areas, dto.getNumber());
+    }
+
+    private List<Product> getJiadaoPrice(Product dto, Double length, Double width) {
+        double[][] prices = {
+                {90, 148, 240, 550},
+                {100, 160, 250, 550},
+                {110, 175, 258, 550},
+                {120, 180, 266, 595},
+                {130, 203, 290, 648},
+        };
+        int[] count_list = new int[]{12, 20, 40, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000};
+        double[] lengths = {1.2, 1.5, 1.8, 2, 2.4};
+        if ("2".equals(dto.getKind())) {
+            prices = new double[][]{
+                    {110, 236, 290, 587},
+                    {119, 240, 298, 587},
+                    {125, 240, 308, 587},
+                    {137, 240, 316, 630},
+                    {146, 254, 340, 681},
+            };
+        }
+        if ("3".equals(dto.getKind())) {
+            prices = new double[][]{
+                    {91, 158, 210, 234, 514},
+                    {91, 158, 210, 234, 514},
+                    {100, 168, 230, 242, 542},
+                    {100, 168, 230, 251, 550},
+                    {110, 175, 250, 275, 564},
+            };
+            count_list = new int[]{12, 20, 30, 40, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000};
+        }
+        List<Product> list = new ArrayList<>();
+        double last_price = 0;
+        int last_count = 0;
+        int current_int = Arrays.binarySearch(lengths, length);
+        double[] prices_list = prices[current_int];
+        List<String> carftList = dto.getCraft() == null ? new ArrayList<>() : Arrays.asList(dto.getCraft());
+        double craft_price = 0;
+        if (carftList.contains("切割机")) {
+            craft_price = Math.ceil(dto.getStickNum() * 15);
+        }
+        for (int i = 0; i < count_list.length; i++) {
+            double price = 0;
+
+            int item_count = count_list[i];
+            if (i < prices_list.length) {
+                price = last_price = prices_list[i];
+                last_count = item_count;
+            } else {
+                price = last_price * Math.ceil(1.0 * item_count / last_count);
+            }
+
+            if (item_count < dto.getCount()) {
+                continue;
+            }
+            if (list.size() > 2) {
+                break;
+            }
+            Product pro = new Product();
+            pro.setCount(item_count);
+            pro.setPrice(Math.ceil(price * dto.getNumber() + craft_price));
+            list.add(pro);
+        }
+
+        return list;
+    }
+
     private List<Product> getOtherHekaPrice(Product dto, double length, double width) {
         int[][] prices = {
                 {79, 79, 79, 79, 79, 79, 79, 79, 79, 91, 92, 92, 95, 96, 135, 139, 152, 186, 340, 345, 435, 450},

+ 388 - 0
src/main/webapp/views/product/tape.jsp

@@ -0,0 +1,388 @@
+<%@ page language="java" contentType="text/html; charset=UTF-8"
+         pageEncoding="UTF-8" %>
+<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
+<!DOCTYPE html>
+<html>
+<head>
+    <meta charset="UTF-8">
+    <title>Insert title here</title>
+    <%@include file="/views/common.jsp" %>
+</head>
+<body>
+<div class="big_box">
+    <div class="left_div">
+        <h1 class="h1">胶带</h1> <span style="color:red;font-weight:700;"></span>
+        <hr>
+        <form class="layui-form">
+            <input type="hidden" name="proTypeValue" id="proTypeValue" class="layui-input" value="胶带"/>
+            <p>
+                材质
+            </p>
+            <div class="layui-form-item">
+                <select name="kind" id="kind" lay-filter="kind" class="select" lay-search>
+                    <option value="1">白底胶带</option>
+                    <option value="2">彩色胶带</option>
+                    <option value="3">透明胶带</option>
+                </select>
+            </div>
+
+            <p>
+                宽度尺寸(CM/厘米)<span style="font-size:12px;color:red">长度固定100米</span>
+            </p>
+            <div class="layui-form-item" id="ui_size">
+                <select name="length" id="length">
+                    <option value="1.2">1.2CM</option>
+                    <option value="1.5">1.5CM</option>
+                    <option value="1.8">1.8CM</option>
+                    <option value="2">2CM</option>
+                    <option value="2.4">2.4CM</option>
+                </select>
+            </div>
+            <p>
+                数量(卷)
+            </p>
+            <div class="layui-form-item">
+                <select name="count" id="count" lay-filter="count" class="select">
+                    <option value="12">12</option>
+                    <option value="20">20</option>
+                    <option value="40">40</option>
+                    <option value="100">100</option>
+                    <option value="200">200</option>
+                    <option value="300">300</option>
+                    <option value="400">400</option>
+                    <option value="500">500</option>
+                    <option value="600">600</option>
+                    <option value="700">700</option>
+                    <option value="800">800</option>
+                    <option value="900">900</option>
+                    <option value="1000">1000</option>
+                </select>
+            </div>
+            <p>
+                颜色
+            </p>
+            <div class="layui-form-item">
+                <select id="color" lay-filter="color" class="select" lay-search>
+                    <option value="白底黑字">白底黑字</option>
+                    <option value="白底深咖字">白底深咖字</option>
+                    <option value="白底灰字">白底灰字</option>
+                    <option value="白底蓝字">白底蓝字</option>
+                    <option value="白底天蓝字">白底天蓝字</option>
+                    <option value="白色橙字">白色橙字</option>
+                    <option value="白底绿字">白底绿字</option>
+                    <option value="白底田园绿">白底田园绿</option>
+                    <option value="白底墨绿色">白底墨绿色</option>
+                    <option value="白底红字">白底红字</option>
+                    <option value="白底深粉色">白底深粉色</option>
+                    <option value="白底玫红字">白底玫红字</option>
+                    <option value="白底金字">白底金字</option>
+                </select>
+            </div>
+            <p>
+                款数
+            </p>
+            <div class="layui-form-item">
+                <input type="text" placeholder="请输入整数" autocomplete="off" name="number" id="number" value="1"
+                       class="layui-input" lay-verify="number">
+            </div>
+            <p>
+                客户旺旺
+            </p>
+            <div class="layui-form-item">
+                <input type="text" placeholder="请输入客户旺旺号" autocomplete="off" name="wangwang" id="wangwang"
+                       class="layui-input">
+            </div>
+            <p>
+                工艺
+            </p>
+            <div class="layui-form-item">
+                <div class="layui-input-block" style="display:inline-block;">
+                    配件:
+                    <input type="checkbox" name="craft" lay-filter="ui_craft" value="切割机" title="切割机">
+                    <div class="layui-inline qiege" style="width:100px; display:none">
+                        <label style="display: flex;align-items: center">
+                            <span style="flex-shrink: 0">数量:</span>
+                            <input type="text" placeholder="请输入数量" name="stickNum" class="layui-input" value="1">
+                        </label>
+                    </div>
+                </div>
+            </div>
+            <hr>
+            <div class="layui-form-item">
+                <button class="layui-btn" lay-submit="" lay-filter="acount_btn">计算</button>
+                <button type="reset" class="layui-btn layui-btn-primary">重置</button>
+            </div>
+            <h2>计算结果-
+                <button type="button" class="layui-btn layui-btn-primary layui-btn-sm copyResult"
+                        onclick="copyResult()">点击复制
+                </button>
+            </h2>
+            <div>
+                <textarea rows="11" cols="75" id="span_result" readonly="readonly"></textarea>
+                <%@include file="../acountExpressFee.jsp" %>
+            </div>
+            <div>
+                <table class="layui-hide" id="priceTable" lay-filter="priceTable"></table>
+            </div>
+        </form>
+    </div>
+    <div class="right_div" style="margin-left:50px;">
+        <div class="layui-carousel" id="test1">
+            <div carousel-item id="carousel"></div>
+            <br>
+            <div id="remark" style="font-size:20px;color:red"></div>
+        </div>
+    </div>
+</div>
+</body>
+<%@include file="/views/copyResult.jsp" %>
+<script>
+    layui.use(['table', 'form', 'carousel'], function () {
+        var form = layui.form; //只有执行了这一步,部分表单元素才会自动修饰成功
+        var carousel = layui.carousel;
+        var table = layui.table;
+
+        //建造实例
+        ins = carousel.render({});
+        var html = " ";
+        var remark = " ";
+        // 清空轮播图
+        $("#carousel").empty();
+        $("#remark").empty();
+
+        $.ajax({
+            url: "${pageContext.request.contextPath}/getImgs",
+            type: "GET",
+            data: {
+                proTypeValue: $("#proTypeValue").val(),
+                kindValue: $('input[name="kindValue"]').val()
+            },
+            success: function (result) {
+                for (let i = 0; i < result.length; i++) {
+                    // 只留一个remark
+                    remark = "";
+                    html += '<div><img style="width:' + result[0].imgWidth + 'px" src="' + result[i].imgUrl + '"></div>';
+                    remark += '<div><span>' + result[i].remark + '<span/></div>';
+                }
+                $("#carousel").append(html);
+                // 如果没有说明,就不显示null
+                if (remark.indexOf("null") < 0) {
+                    $("#remark").append(remark);
+                }
+                // 如果没有轮播图就隐藏
+                if (result.length == 0) {
+                    document.getElementById("test1").style.display = "none";   //隐藏
+                } else {
+                    document.getElementById("test1").style.display = "block";   //显示
+                    ins.reload({
+                        elem: '#test1',
+                        width: result[0].imgWidth,  //设置容器宽度
+                        height: result[0].imgHeight
+                    });
+                }
+            }
+        });
+
+        function setColor() {
+            let kind = document.getElementById("kind").value;
+            let html = '';
+            let count = document.getElementById("count").value;
+            if (kind == '1') {
+                html = `
+                    <option value="白底黑字">白底黑字</option>
+                    <option value="白底深咖字">白底深咖字</option>
+                    <option value="白底灰字">白底灰字</option>
+                    <option value="白底蓝字">白底蓝字</option>
+                    <option value="白底天蓝字">白底天蓝字</option>
+                    <option value="白色橙字">白色橙字</option>
+                    <option value="白底绿字">白底绿字</option>
+                    <option value="白底田园绿">白底田园绿</option>
+                    <option value="白底墨绿色">白底墨绿色</option>
+                    <option value="白底红字">白底红字</option>
+                    <option value="白底深粉色">白底深粉色</option>
+                    <option value="白底玫红字">白底玫红字</option>
+                    <option value="白底金字">白底金字</option>
+                `;
+            }
+            if (kind == '2') {
+                html = `
+                    <option value="黑底自字">黑底自字</option>
+                    <option value="深咖底自字">深咖底自字</option>
+                    <option value="灰底白字">灰底白字</option>
+                    <option value="天蓝底白字">天蓝底白字</option>
+                    <option value="橙底白字">橙底白字</option>
+                    <option value="绿底白字">绿底白字</option>
+                    <option value="田园绿白字">田园绿白字</option>
+                    <option value="墨绿色白字">墨绿色白字</option>
+                    <option value="红底白字">红底白字</option>
+                    <option value="深粉底白字">深粉底白字</option>
+                    <option value="玫红底白字">玫红底白字</option>
+                    <option value="柠檬黄黑字">柠檬黄黑字</option>
+                    <option value="黑底柠檬黄字">黑底柠檬黄字</option>
+                    <option value="米黄黑字">米黄黑字</option>
+                    <option value="黑底米黄字">黑底米黄字</option>
+                    <option value="米黄红字">米黄红字</option>
+                    <option value="红底米黄字">红底米黄字</option>
+                    <option value="粉底黑字">粉底黑字</option>
+                    <option value="黑底粉字">黑底粉字</option>
+                    <option value="红底黑字">红底黑字</option>
+                    <option value="黑底红字">黑底红字</option>
+                    <option value="黑底金字">黑底金字</option>
+                    <option value="玫红黑字">玫红黑字</option>
+                    <option value="黑底玫红字">黑底玫红字</option>
+                    <option value="绿底黑字">绿底黑字</option>
+                    <option value="黑底绿字">黑底绿字</option>
+                    <option value="橙底黑字">橙底黑字</option>
+                    <option value="黑底橙子">黑底橙子</option>
+                `;
+            }
+            if (kind == '3') {
+                html = `
+                    <option value="黑字">黑字</option>
+                    <option value="灰字">灰字</option>
+                    <option value="红字">红字</option>
+                    <option value="玫红字">玫红字</option>
+                    <option value="绿字">绿字</option>
+                    <option value="粉字">粉字</option>
+                    <option value="青蓝字">青蓝字</option>
+                    <option value="天蓝字">天蓝字</option>
+                    <option value="咖啡字">咖啡字</option>
+                    <option value="橙字">橙字</option>
+                    <option value="白字">白字</option>
+                    <option value="紫字">紫字</option>
+                    <option value="黄字">黄字</option>
+                `;
+                if (count > 50) {
+                    html += `<option value="任意颜色">任意颜色</option>`;
+                }
+
+            }
+            $("#color").empty().append(html);
+            form.render();
+        }
+
+        form.on('select(count)', function () {
+            setColor();
+        })
+        form.on('select(kind)', function (data) {
+            setColor();
+        })
+        form.on('checkbox(ui_craft)', function (data) {
+            let craft_list = [];
+            $("input[name='craft']:checked").each(function () {
+                    if (!$(this).is(':disabled')) {
+                        craft_list.push($(this).val());
+                    }
+                }
+            );
+            if (craft_list.indexOf("切割机") > -1) {
+                $(".qiege").show();
+            } else {
+                $(".qiege").hide();
+            }
+        })
+
+        // 点击计算,计算价格
+        form.on('submit(acount_btn)', function (data) {
+            var number = $("#number").val();
+            var size = $("#length option:selected").text();
+            var kind = $("#kind option:selected").text();
+            var color = $("#color option:selected").text();
+            var craft = [];
+            craft.push(color);
+            $("input[name='craft']:checked").each(function () {
+                    if (!$(this).is(':disabled')) {
+                        if ($(this).val() == "切割机") {
+                            craft.push($(this).val() + $("input[name='stickNum']").val() + "个");
+                        }
+                    }
+                }
+            );
+
+            $.ajax({
+                url: "${path}/getThanSum",
+                type: "GET",
+                data: $(".big_box form").serialize(),
+                success: function (result) {
+                    if (result.code == 100) {
+                        layer.msg(result.msg, {offset: ['300px', '300px']}, function () {
+                        });
+                        return false;
+                    }
+                    var data = result.data.proList;
+
+                    var span_result = '胶带 - ' + kind + ' - ' + size + ' (同款内容)\n';
+
+                    span_result += `工艺:` + craft.join(",") + '\n';
+
+                    if (number > 1) {
+                        for (let i = 0; i < data.length; i++) {
+                            span_result += number + '款 各' + data[i].count + "个,共" + data[i].price + "元" + '\n'
+                            data[i].number = number;
+                        }
+                    } else {
+                        for (let i = 0; i < data.length; i++) {
+                            span_result += number + '款 ' + data[i].count + "个,共" + data[i].price + "元" + '\n'
+                            data[i].number = number;
+                        }
+                    }
+
+                    span_result += '包邮,免费设计呢~(偏远地区需补邮费)'
+                    $("#span_result").val(span_result);
+
+                    //计算完自动复制文本
+                    var e = document.getElementById("span_result");//对象是content
+                    if (e.value != "") {
+                        e.select();//选择对象
+                        document.execCommand("Copy");//执行浏览器复制命令
+                    }
+
+                    //生成表格
+                    table.render({
+                        elem: '#priceTable',
+                        even: true, //隔行变色
+                        data: data, // 赋值已知数据
+                        width: 500,
+                        cols: [[
+                            {
+                                field: 'number',
+                                width: '12%',
+                                align: "center",
+                                title: '款数'
+                            }, {
+                                field: 'count',
+                                width: '16%',
+                                align: "center",
+                                title: '数量'
+                            }, {
+                                field: 'price',
+                                width: '16%',
+                                align: "center",
+                                title: '报价'
+                            }, {
+                                field: 'wangwang',
+                                align: "center",
+                                width: '16%',
+                                title: '折扣价'
+                            }, {
+                                field: 'wangwang',
+                                align: "center",
+                                width: '19%',
+                                title: '跳楼价'
+                            }, {
+                                field: 'weight',
+                                width: '21%',
+                                align: "center",
+                                title: '重量(kg)'
+                            }
+                        ]],
+                        done: function () {
+                        }
+                    });
+                }
+            });
+            return false;
+        });
+    });
+</script>
+</html>