Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hp-smart
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
platform
hp-smart
Commits
a2028008
Commit
a2028008
authored
Oct 08, 2024
by
liuyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024-09-28 营销管理优化
parent
af47ff5a
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
12 deletions
+11
-12
HPConstant.java
src/main/java/com/baosight/hpjx/hp/constant/HPConstant.java
+7
-1
HPYX005.js
src/main/webapp/HP/YX/HPYX005.js
+1
-1
HPYX005A.jsp
src/main/webapp/HP/YX/HPYX005A.jsp
+0
-7
HPYX005B.jsp
src/main/webapp/HP/YX/HPYX005B.jsp
+1
-1
HPYX005C.jsp
src/main/webapp/HP/YX/HPYX005C.jsp
+1
-1
common.js
src/main/webapp/common/js/common.js
+1
-1
No files found.
src/main/java/com/baosight/hpjx/hp/constant/HPConstant.java
View file @
a2028008
...
...
@@ -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"
;
}
/**
...
...
src/main/webapp/HP/YX/HPYX005.js
View file @
a2028008
...
...
@@ -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
...
...
src/main/webapp/HP/YX/HPYX005A.jsp
View file @
a2028008
...
...
@@ -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" %>
...
...
src/main/webapp/HP/YX/HPYX005B.jsp
View file @
a2028008
...
...
@@ -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']"/>
...
...
src/main/webapp/HP/YX/HPYX005C.jsp
View file @
a2028008
...
...
@@ -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"
...
...
src/main/webapp/common/js/common.js
View file @
a2028008
...
...
@@ -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
);
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment