新增纸碗,新增腰封工艺,新增不干胶工艺
This commit is contained in:
@@ -388,6 +388,26 @@ public class ProductService {
|
||||
kind = "2";
|
||||
} else if ("15".equals(kind) || "16".equals(kind)) {
|
||||
List<String> craft_list = dto.getCraft() != null ? Arrays.asList(dto.getCraft()) : new ArrayList<>();
|
||||
|
||||
if ("15".equals(kind) && dto.getCraftTang().contains("彩色印刷+烫金")) {
|
||||
double[][] prices = new double[][]{
|
||||
{403, 503, 503, 503, 543, 582, 582, 582, 620, 620, 660, 698, 775, 775, 852.5, 853, 853},
|
||||
{520, 520, 520, 520, 560, 600, 600, 600, 640, 640, 680, 720, 800, 800, 880, 880, 880},
|
||||
{600, 600, 600, 600, 637.5, 675, 675, 675, 750, 750, 825, 862.5, 975, 975, 1050, 1050, 1125},
|
||||
{625, 625, 625, 625, 662.5, 700, 700, 700, 775, 775, 850, 887.5, 1000, 1000, 1075, 1075, 1150},
|
||||
{652, 652, 652, 652, 725, 762, 762, 762, 870, 870, 942, 978, 1051, 1051, 1087, 1087, 1196},
|
||||
{798, 798, 798, 798, 943, 1015, 1015, 1015, 1087, 1087, 1196, 1196, 1341, 1341, 1450, 1450, 1631},
|
||||
{910, 910, 910, 910, 1120, 1155, 1225, 1225, 1400, 1470, 1575, 1575, 1680, 1680, 1855, 1925, 2100},
|
||||
};
|
||||
int[] count_list = new int[]{200, 500, 1000, 2000, 3000, 5000, 10000};
|
||||
double[] areas = new double[]{9, 12.25, 16, 20.25, 25, 30.25, 36, 42.25, 49, 56.25, 64, 72.25, 81, 90.25, 100, 110.25, 121};
|
||||
area = (length + 0.4) * (width + 0.4);//加上4毫出血
|
||||
priceList = getAreaNextPrice(count_list, dto.getCount(), area, prices, areas, dto.getNumber());
|
||||
for (Product product : priceList) {
|
||||
product.setPrice(Math.ceil(product.getPrice() * 0.8));
|
||||
product.setWeight(df.format(number * length / 100 * width / 100 * product.getCount() * 0.3));
|
||||
}
|
||||
} else {
|
||||
priceList = new SwzStickersPrice().getPrice(count, length, width, number, dto.getCraftTang());
|
||||
for (Product product : priceList) {
|
||||
double rate = 1;
|
||||
@@ -396,6 +416,8 @@ public class ProductService {
|
||||
}
|
||||
product.setPrice(Math.ceil(product.getPrice() * number * rate));
|
||||
}
|
||||
}
|
||||
|
||||
return priceList;
|
||||
}
|
||||
// 查询出来的价格集合
|
||||
@@ -951,6 +973,10 @@ public class ProductService {
|
||||
}
|
||||
}
|
||||
}
|
||||
if ("1".equals(dto.getKind())) {
|
||||
dto.setLengthTang(length);
|
||||
dto.setWidthTang(width);
|
||||
}
|
||||
getCraft(dto, priceList, length * 10, width * 10, min);
|
||||
// 刮刮膜增加价格
|
||||
if (dto.getKind().equals("13")) {
|
||||
@@ -4760,12 +4786,77 @@ public class ProductService {
|
||||
return getWristBandPrice(dto, width, length);
|
||||
case "手提塑料袋":
|
||||
return getPlasticBagPrice(dto, width, length);
|
||||
case "纸碗":
|
||||
return getPaperBowlPrice(dto, width, length);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private List<Product> getPaperBowlPrice(Product dto, Double width, Double length) {
|
||||
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 = {1200, 2400, 3600, 4800, 6000, 10000};
|
||||
double[][] prices = {
|
||||
{605, 1141, 1557, 2053, 2353, 3557},
|
||||
{633, 1195, 1641, 2164, 2491, 3788},
|
||||
{653, 1235, 1699, 2243, 2588, 3951},
|
||||
};
|
||||
int sizeIndex = 0;
|
||||
String size = dto.getSize();
|
||||
if ("165*64*145".equals(size)) {
|
||||
sizeIndex = 1;
|
||||
}
|
||||
if ("165*75*142".equals(size)) {
|
||||
sizeIndex = 2;
|
||||
}
|
||||
double carftPrice = 0;
|
||||
if (craft_list.contains("ops盖")) {
|
||||
carftPrice = 0.102;
|
||||
}
|
||||
if (craft_list.contains("pp盖")) {
|
||||
carftPrice = 0.125;
|
||||
}
|
||||
if (craft_list.contains("牛皮纸盖")) {
|
||||
carftPrice = 0.139;
|
||||
}
|
||||
if (craft_list.contains("白卡纸盖")) {
|
||||
carftPrice = 0.113;
|
||||
}
|
||||
for (int i = 0; i < counts.length; i++) {
|
||||
int itemCount = counts[i];
|
||||
if (itemCount < count) {
|
||||
continue;
|
||||
}
|
||||
if (priceList.size() > 2) {
|
||||
break;
|
||||
}
|
||||
if (craft_list.contains("金箔") || craft_list.contains("铝箔")) {
|
||||
carftPrice += 0.115;
|
||||
}
|
||||
Product pro = new Product();
|
||||
pro.setCount(priceList.size() == 0 ? count : itemCount);
|
||||
pro.setPrice(Math.ceil((prices[sizeIndex][i] + carftPrice * itemCount) * number));
|
||||
pro.setNumber(number);
|
||||
priceList.add(pro);
|
||||
}
|
||||
if (priceList.size() == 0) {
|
||||
if (craft_list.contains("金箔") || craft_list.contains("铝箔")) {
|
||||
carftPrice += 0.115;
|
||||
}
|
||||
|
||||
Product pro = new Product();
|
||||
pro.setCount(count);
|
||||
pro.setPrice(Math.ceil((prices[sizeIndex][prices[sizeIndex].length - 1] / counts[counts.length - 1] + carftPrice) * count * number));
|
||||
pro.setNumber(number);
|
||||
priceList.add(pro);
|
||||
}
|
||||
return priceList;
|
||||
}
|
||||
|
||||
private List<Product> getPlasticBagPrice(Product dto, Double width, Double length) {
|
||||
List<String> craft_list = dto.getCraft() == null ? new ArrayList<>() : Arrays.asList(dto.getCraft());
|
||||
List<Product> priceList = new ArrayList<>();
|
||||
|
||||
@@ -565,6 +565,7 @@
|
||||
<option value="4">4</option>
|
||||
</select>
|
||||
</div>
|
||||
<input type="checkbox" name="craft" class="tang" lay-filter="switch" value="单面烫金" title="单面烫金">
|
||||
</span>
|
||||
<div id="craftHu" style="display:none;margin-top: 5px;">
|
||||
<input type="checkbox" name="craft" class="ui_hu" lay-filter="switch" value="糊成品"
|
||||
@@ -3075,7 +3076,7 @@
|
||||
arr.push($(this).val() + '(' + $(".dama").val() + '组)');
|
||||
}
|
||||
}
|
||||
if ($(this).val() === '单面烫金' || $(this).val() === '双面烫金') {
|
||||
if (kind != 1 && ($(this).val() === '单面烫金' || $(this).val() === '双面烫金')) {
|
||||
$(".sizeTang").find(":input").attr("disabled", false);
|
||||
if ($("#lengthTang").val() == '' || $("#widthTang").val() == '') {
|
||||
layer.msg('请填写烫金版尺寸!', {offset: ['300px', '300px']}, function () {
|
||||
|
||||
@@ -0,0 +1,331 @@
|
||||
<%@ 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="纸碗"/>
|
||||
<p>
|
||||
材质
|
||||
</p>
|
||||
<div class="layui-form-item">
|
||||
<select name="kind" class="select" lay-search lay-filter="kind">
|
||||
<option value="1">280克白卡纸</option>
|
||||
<option value="2">280克牛皮纸</option>
|
||||
</select>
|
||||
</div>
|
||||
<p>
|
||||
尺寸(MM/厘米) <span style="font-size: 14px; color: red">输入格式: 长 * 宽</span>
|
||||
</p>
|
||||
<div class="layui-form-item" id="ui_size">
|
||||
<select name="size" id="size" class="layui-form-select">
|
||||
<option value="150*72*128">150*72*128</option>
|
||||
<option value="165*64*145">165*64*145</option>
|
||||
<option value="165*75*142">165*75*142</option>
|
||||
</select>
|
||||
</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="1200">1200</option>
|
||||
<option value="2400">2400</option>
|
||||
<option value="3600">3600</option>
|
||||
<option value="4800">4800</option>
|
||||
<option value="6000">6000</option>
|
||||
<option value="10000">10000</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="1200" 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" id="wangai">
|
||||
<select name="craft" class="select">
|
||||
<option value="ops盖">ops盖</option>
|
||||
<option value="pp盖">pp盖</option>
|
||||
<option value="牛皮纸盖">牛皮纸盖</option>
|
||||
<option value="白卡纸盖">白卡纸盖</option>
|
||||
</select>
|
||||
</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="金箔">
|
||||
<input type="checkbox" name="craft" lay-filter="ui_craft" value="铝箔" title="铝箔">
|
||||
</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 = " ";
|
||||
const carft_list1 = ["金箔", "铝箔"];
|
||||
|
||||
// 清空轮播图
|
||||
$("#carousel").empty();
|
||||
$("#remark").empty();
|
||||
$(".ui_feb").show();
|
||||
$(".ui_feb select").attr("disabled", false);
|
||||
$.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('select(kind)', function (data) {
|
||||
$("#z4_craft").hide();
|
||||
$("#z4_craft").find("input").prop("disabled", true)
|
||||
if (data.value == 1) {
|
||||
$("#z4_craft").show();
|
||||
$("#z4_craft").find("input").prop("disabled", false)
|
||||
}
|
||||
})
|
||||
form.on("select(count_select)", function (val) {
|
||||
$("#count").val(val.value);
|
||||
})
|
||||
form.on('checkbox(ui_craft)', function (data) {
|
||||
let craft_list = [];
|
||||
craft_list.push($("select[name='craft'] option:selected").val());
|
||||
$("input[name='craft']:checked").each(function () {
|
||||
if (!$(this).is(':disabled')) {
|
||||
craft_list.push($(this).val());
|
||||
}
|
||||
}
|
||||
);
|
||||
let count = $("#count").val();
|
||||
if (count < 10000 && data.elem.checked) {
|
||||
$(data.elem).prop("checked", false);
|
||||
layer.msg("工艺数量一万以上才能选择", {offset: ['300px', '300px']}, function () {
|
||||
});
|
||||
form.render();
|
||||
return false;
|
||||
}
|
||||
const carft1 = carft_list1.filter(craft => craft_list.includes(craft));
|
||||
if (carft1.length > 1) {
|
||||
$(data.elem).prop("checked", false);
|
||||
layer.msg("工艺不能同时选择", {offset: ['300px', '300px']}, function () {
|
||||
});
|
||||
form.render();
|
||||
return false;
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
// 点击计算,计算价格
|
||||
form.on('submit(acount_btn)', function (data) {
|
||||
var number = $("#number").val();
|
||||
var size = $("#size").val();
|
||||
var count = $("#count").val();
|
||||
var kind = $("select[name='kind'] option:selected").text();
|
||||
var craft = [];
|
||||
let peijian = [];
|
||||
peijian.push($("#wangai select[name='craft'] option:selected").val());
|
||||
$("input:checkbox[name='craft']:checked").each(function (i) {
|
||||
// 没有被禁用的工艺加到arr中
|
||||
if (!$(this).is(':disabled')) {
|
||||
craft.push($(this).val());
|
||||
}
|
||||
});
|
||||
if (count < 100) {
|
||||
layer.msg("数量100以上才能报价", {offset: ['300px', '300px']}, function () {
|
||||
});
|
||||
return false;
|
||||
}
|
||||
if (count < 10000 && (craft.includes("金箔") || craft.includes("铝箔"))) {
|
||||
layer.msg("工艺数量一万以上才能选择", {offset: ['300px', '300px']}, function () {
|
||||
});
|
||||
return false;
|
||||
}
|
||||
$.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 + ' MM (同款内容)\n';
|
||||
span_result += `工艺:` + craft.join(",") + '\n';
|
||||
span_result += `盖子:` + peijian.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>
|
||||
@@ -391,6 +391,9 @@
|
||||
<input type="radio" name="craftTang" value="烫金" title="烫金" lay-filter="radio_craftTang">
|
||||
<input type="radio" name="craftTang" value="浮雕烫金" title="浮雕烫金" lay-filter="radio_craftTang">
|
||||
<input type="radio" name="craftTang" value="彩色印刷" title="彩色印刷" lay-filter="radio_craftTang">
|
||||
<div class="layui-inline ystj" style="width: 150px">
|
||||
<input type="radio" name="craftTang" value="彩色印刷+烫金" title="彩色印刷+烫金" lay-filter="radio_craftTang">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<form class="layui-form ui_sm" style="display: none;">
|
||||
@@ -895,6 +898,8 @@
|
||||
$('.n_mq input').prop("disabled", true);
|
||||
$(".sjitu").hide();
|
||||
$(".sjitu select").attr("disabled", true);
|
||||
$(".ystj").hide();
|
||||
$(".ystj").find("input").attr("disabled", true);
|
||||
let count_html = `<option value="500">500</option>
|
||||
<option value="1000">1000</option>
|
||||
<option value="2000">2000</option>
|
||||
@@ -1064,6 +1069,10 @@
|
||||
$("#craftForm").show();
|
||||
$('.normal input').prop("checked", false);
|
||||
}
|
||||
if(data.value == "15"){
|
||||
$(".ystj").show();
|
||||
$(".ystj").find("input").attr("disabled", false);
|
||||
}
|
||||
if (data.value == 0 || data.value == 1 || data.value == 2 || data.value == 3) {
|
||||
|
||||
$(".pf").show();
|
||||
|
||||
Reference in New Issue
Block a user