新增扑克牌
This commit is contained in:
@@ -4463,12 +4463,68 @@ public class ProductService {
|
||||
case "防油纸袋":
|
||||
priceList = getOilProofPaperPrice(dto, width, length, height);
|
||||
return chucklePrice(role, priceList, dto);
|
||||
case "扑克牌":
|
||||
priceList = getPegSolitairePrice(dto, width, length, height);
|
||||
return chucklePrice(role, priceList, dto);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private List<Product> getPegSolitairePrice(Product dto, Double width, Double length, Double height) {
|
||||
List<String> craft_list = dto.getCraft() == null ? new ArrayList<>() : Arrays.asList(dto.getCraft());
|
||||
List<Product> priceList = new ArrayList<>();
|
||||
|
||||
int count = dto.getCount();
|
||||
int number = dto.getNumber();
|
||||
|
||||
int[] counts = {1, 10, 50, 100, 200, 300, 400};
|
||||
double[][] prices_area = {
|
||||
{180, 180, 380, 570, 990, 1590, 2020},
|
||||
{180, 180, 380, 570, 990, 1590, 2020}
|
||||
};
|
||||
int currentIndex = 0;
|
||||
if ("黑芯310克".equals(dto.getKind())) {
|
||||
currentIndex = 1;
|
||||
}
|
||||
if ("合版".equals(dto.getKind2Value())) {
|
||||
counts = new int[]{100, 200, 500, 1000, 2000, 5000, 10000, 20000, 30000, 50000, 100000};
|
||||
prices_area = new double[][]{
|
||||
{1370, 1600, 2350, 3620, 5990, 12450, 22940, 43810, 63290, 102330, 193850},
|
||||
{1550, 1830, 2690, 4150, 7020, 14700, 26860, 51430, 74540, 120940, 230770}
|
||||
};
|
||||
if (dto.isSwitchSize()) {
|
||||
if ("34.6*33.8".equals(dto.getSize1())) {
|
||||
prices_area = new double[][]{
|
||||
{2550, 2770, 3550, 4920, 7580, 14860, 26640, 50330, 72250, 116490, 221030},
|
||||
{2620, 2870, 3710, 5180, 8080, 15980, 28520, 53890, 77360, 124730, 236650}
|
||||
};
|
||||
}
|
||||
if ("22.6*21.6".equals(dto.getSize1())) {
|
||||
prices_area = new double[][]{
|
||||
{2570, 2810, 3650, 5110, 8000, 16050, 29090, 54960, 78900, 127220, 241370},
|
||||
{2640, 2910, 3810, 5370, 8500, 17180, 30980, 58530, 84020, 135470, 257030}
|
||||
};
|
||||
}
|
||||
if ("31.2*17.1".equals(dto.getSize1())) {
|
||||
prices_area = new double[][]{
|
||||
{2570, 2800, 3630, 5080, 7900, 15690, 28510, 53860, 77310, 124660, 236520},
|
||||
{2640, 2900, 3700, 3660, 5150, 16810, 30390, 57420, 82430, 132910, 252180}
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
double price = new PriceUtils().TableCountCenterPrice(count, prices_area[currentIndex], counts);
|
||||
double design_price = 0;
|
||||
Product pro = new Product();
|
||||
pro.setCount(count);
|
||||
pro.setPrice(Math.max(Math.ceil(price), 0) * number + design_price);
|
||||
priceList.add(pro);
|
||||
return priceList;
|
||||
}
|
||||
|
||||
private List<Product> getOilProofPaperPrice(Product dto, Double width, Double length, Double height) {
|
||||
List<String> craft_list = dto.getCraft() == null ? new ArrayList<>() : Arrays.asList(dto.getCraft());
|
||||
List<Product> priceList = new ArrayList<>();
|
||||
|
||||
@@ -0,0 +1,408 @@
|
||||
<%@ 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>
|
||||
<style>
|
||||
#z4_craft .layui-form-select .layui-edge {
|
||||
right: 20px;
|
||||
}
|
||||
</style>
|
||||
<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="扑克牌"/>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<input type="radio" name="kind2Value" lay-filter="kind2Value" value="合版" title="合版" checked>
|
||||
<input type="radio" name="kind2Value" lay-filter="kind2Value" value="数码" title="数码">
|
||||
</div>
|
||||
<p>
|
||||
材质
|
||||
</p>
|
||||
<div class="layui-form-item">
|
||||
<select name="kind" class="select" lay-search lay-filter="kind">
|
||||
<option value="紫芯300克">紫芯300克</option>
|
||||
<option value="黑芯310克">黑芯310克</option>
|
||||
</select>
|
||||
</div>
|
||||
<p>
|
||||
牌芯尺寸(CM/厘米)
|
||||
</p>
|
||||
<div class="layui-form-item" id="ui_size">
|
||||
<select name="xSize" class="layui-form-select">
|
||||
<option value="9.7*6">9.7*6cm</option>
|
||||
</select>
|
||||
</div>
|
||||
<p>
|
||||
牌盒子尺寸(CM/厘米)<span class="switchSize_layout"></spam><input type="checkbox" title="大牌盒" lay-filter="switchSize"
|
||||
name="switchSize"></span>
|
||||
</p>
|
||||
<div class="layui-form-item">
|
||||
<select name="size" class="layui-form-select">
|
||||
<option value="25.2*10.05">25.2*10.05cm</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="layui-form-item size_layout" style="display: none">
|
||||
<p>
|
||||
大牌盒子尺寸(CM/厘米)
|
||||
</p>
|
||||
<div class="layui-form-item">
|
||||
<select name="size1" class="layui-form-select">
|
||||
<option value="34.6*33.8">34.6*33.8cm</option>
|
||||
<option value="22.6*21.6">22.6*21.6cm</option>
|
||||
<option value="31.2*17.1">31.2*17.1cm</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-form-item layui-input-inline">
|
||||
<p>
|
||||
数量(个)
|
||||
</p>
|
||||
<div class="layui-form-item" style="width: 200px">
|
||||
<select id="count_select" lay-filter="count_select" class="select">
|
||||
<option value="100">100</option>
|
||||
<option value="200">200</option>
|
||||
<option value="500">500</option>
|
||||
<option value="1000">1000</option>
|
||||
<option value="2000">2000</option>
|
||||
<option value="5000">5000</option>
|
||||
<option value="5000">5000</option>
|
||||
<option value="10000">10000</option>
|
||||
<option value="20000">20000</option>
|
||||
<option value="30000">30000</option>
|
||||
<option value="50000">50000</option>
|
||||
<option value="100000">100000</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class=" layui-input-inline">
|
||||
<p>
|
||||
自定义数量
|
||||
</p>
|
||||
<div class="layui-form-item" style="width: 500px">
|
||||
<input type="text" name="count" id="count" value="100" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
</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" id='z4_craft'>
|
||||
<div class="layui-input-block ">
|
||||
印面:
|
||||
<input type="checkbox" name="craft" lay-filter="ui_craft" value="双面" title="双面" checked>
|
||||
</div>
|
||||
<div class="layui-input-block ">
|
||||
裁切:
|
||||
<input type="checkbox" name="craft" lay-filter="ui_craft" value="模切" title="模切" checked>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-input-block">
|
||||
<input type="checkbox" name="craft" lay-filter="ui_craft" value="抠图" title="抠图">
|
||||
<div class="layui-inline crop" style="display:none;width: 80px">
|
||||
<input class="layui-input" type="text" name="cropNumber">
|
||||
</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:100%;height: 100%;object-fit: contain" 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
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
form.on("checkbox(switchSize)", function (data) {
|
||||
$(".size_layout").hide();
|
||||
if ($(data.elem).is(":checked")) {
|
||||
$(".size_layout").show();
|
||||
}
|
||||
})
|
||||
|
||||
form.on("radio(kind2Value)", function (data) {
|
||||
$(".switchSize_layout").show();
|
||||
$("input[name='switchSize']").prop("checked", false);
|
||||
$(".size_layout").hide();
|
||||
let html = `<option value="100">100</option>
|
||||
<option value="200">200</option>
|
||||
<option value="500">500</option>
|
||||
<option value="1000">1000</option>
|
||||
<option value="2000">2000</option>
|
||||
<option value="5000">5000</option>
|
||||
<option value="5000">5000</option>
|
||||
<option value="10000">10000</option>
|
||||
<option value="20000">20000</option>
|
||||
<option value="30000">30000</option>
|
||||
<option value="50000">50000</option>
|
||||
<option value="100000">100000</option>`;
|
||||
$("#count").val(100);
|
||||
let sizeHtml = `<option value="25.2*10.05">25.2*10.05cm</option>
|
||||
<option value="34.6*33.8">34.6*33.8cm</option>
|
||||
<option value="22.6*21.6">22.6*21.6cm</option>
|
||||
<option value="31.2*17.1">31.2*17.1cm</option>`;
|
||||
if (data.value == "数码") {
|
||||
$("#count").val(1);
|
||||
$(".switchSize_layout").hide();
|
||||
html = `<option value="1">1</option>
|
||||
<option value="10">10</option>
|
||||
<option value="50">50</option>
|
||||
<option value="100">100</option>
|
||||
<option value="200">200</option>
|
||||
<option value="300">300</option>
|
||||
<option value="400">400</option>`;
|
||||
sizeHtml = `<option value="25.2*10.05">25.2*10.05cm</option>`;
|
||||
}
|
||||
$("#count_select").empty().append(html);
|
||||
//$("select[name='size']").empty().append(sizeHtml);
|
||||
form.render();
|
||||
})
|
||||
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.includes("双面")) {
|
||||
$(data.elem).prop("checked", true);
|
||||
layer.msg("印面工艺不能取消", {offset: ['300px', '300px']}, function () {
|
||||
});
|
||||
form.render();
|
||||
return false;
|
||||
}
|
||||
if (!craft_list.includes("模切")) {
|
||||
$(data.elem).prop("checked", true);
|
||||
layer.msg("裁切工艺不能取消", {offset: ['300px', '300px']}, function () {
|
||||
});
|
||||
form.render();
|
||||
return false;
|
||||
}
|
||||
})
|
||||
|
||||
form.on("select(count_select)", function (val) {
|
||||
$("#count").val(val.value);
|
||||
})
|
||||
|
||||
// 点击计算,计算价格
|
||||
form.on('submit(acount_btn)', function (data) {
|
||||
var number = $("#number").val();
|
||||
var size = $("select[name='size'] option:selected").val();
|
||||
var size1 = $("select[name='size1'] option:selected").val();
|
||||
var switchSize = $("input[name='switchSize']:checked").val();
|
||||
var count = $("#count").val();
|
||||
var kind = $("select[name='kind'] option:selected").text();
|
||||
var kind2Value = $("input[name='kind2Value']:checked").val();
|
||||
var craft = [];
|
||||
if (kind2Value == "数码") {
|
||||
if (count >= 500) {
|
||||
layer.msg("数量大于等于500时,选择合板印刷", {offset: ['300px', '300px']}, function () {
|
||||
});
|
||||
return false;
|
||||
}
|
||||
if (!(Number.isInteger(count) && count > 0 && (count === 1 || (count < 500 && count % 2 === 0)))) {
|
||||
layer.msg("数量限于1、10、50、100、小于500且是2的倍数", {offset: ['300px', '300px']}, function () {
|
||||
});
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
$("input:checkbox[name='craft']:checked").each(function (i) {
|
||||
// 没有被禁用的工艺加到arr中
|
||||
if (!$(this).is(':disabled')) {
|
||||
if ($(this).val() == "抠图") {
|
||||
craft.push($(this).val() + $("input[name='cropNumber']").val());
|
||||
return;
|
||||
} else {
|
||||
craft.push($(this).val());
|
||||
}
|
||||
}
|
||||
});
|
||||
if (switchSize) {
|
||||
craft.push("大盒" + size1 + "cm")
|
||||
}
|
||||
$.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;
|
||||
|
||||
let kind = $("select[name='kind'] option:selected").val();
|
||||
|
||||
var span_result = '扑克牌 - ' + kind + ' - ' + size + ' cm (同款内容)\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 += '包邮,免费设计呢~(偏远地区需补邮费)'
|
||||
if (window.parent.system_isGai) {
|
||||
span_result += "\n\n亲 现在下单可以参加淘宝活动8.5折折扣哦!"
|
||||
}
|
||||
addLog(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>
|
||||
Reference in New Issue
Block a user