Commit a2028008 by liuyang

2024-09-28 营销管理优化

parent af47ff5a
......@@ -115,12 +115,18 @@ public class HPConstant {
//询价单号
public static final String INQUIRY_NUMBER = "INQUIRY_NUMBER";
//产品名称
//产品编码
public static final String PRODUCT_CODE = "PRODUCT_CODE";
//渠道编码
public static final String CHANNEL_CODE = "CHANNEL_CODE";
//产品编码
public static final String HPYX005_PRODUCT_CODE = "HPYX005_PRODUCT_CODE";
//用品编码
public static final String HPBG001_ITEM_CODE = "HPBG001_ITEM_CODE";
//办公用品入库单号
public static final String HPBG002_DEPOSIT_CODE = "HPBG002_DEPOSIT_CODE";
//办公用品领用单号
public static final String HPBG003_RECEIVE_CODE = "HPBG003_RECEIVE_CODE";
}
/**
......
......@@ -114,7 +114,7 @@ function updateFunc() {
}
JSColorbox.open({
href: "HPYX005C?methodName=initLoad&id=" + rows[0].id + "&efParentFormEname=HPYX005",
title: "<div style='text-align: center;'>修改合同</div>",
title: "<div style='text-align: center;'>修改销售业绩</div>",
width: "90%",
height: "90%",
callbackName: windowCallback
......
......@@ -5,13 +5,6 @@
Time: 18:02
To change this template use File | Settings | File Templates.
--%>
<%--
Created by IntelliJ IDEA.
User: 1
Date: 2024/9/27
Time: 18:01
To change this template use File | Settings | File Templates.
--%>
<!DOCTYPE html>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
......
......@@ -18,7 +18,7 @@
var ctx = "${ctx}";
</script>
<EF:EFPage title="新增营销业绩">
<EF:EFRegion id="inqu1" title="基本信息">
<EF:EFRegion id="inqu1" title="销售业绩信息">
<div class="row">
<EF:EFDatePicker cname="销售日期" ename="result-0-sellDate" colWidth="4" required="true"
format="yyyy-MM-dd" parseFormats="['yyyyMMdd']"/>
......
......@@ -19,7 +19,7 @@
</script>
<EF:EFPage title="修改营销业绩">
<EF:EFRegion id="inqu1" title="基本信息">
<EF:EFRegion id="inqu1" title="营销业绩信息">
<div class="row">
<EF:EFInput ename="result-0-id" cname="ID" colWidth="4" readonly="true" type="hidden"/>
<EF:EFDatePicker cname="销售日期" ename="result-0-sellDate" colWidth="4" required="true"
......
......@@ -279,7 +279,7 @@ function currShortDate() {
const year = date.getFullYear();
const month = date.getMonth() + 1; // 月份从0开始,需要加1
const day = date.getDate();
return year + (month < 10 ? '0' + month : month) + (day < 10 ? '0' + day : day);
return year + (month < 10 ? '0' + month : month.toString()) + (day < 10 ? '0' + day : day);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment