Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
E
EIP-Integration
Project
Project
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
Graph
比较
统计图
议题
0
议题
0
列表
看板
标记
Milestones
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
李炎
EIP-Integration
Commits
0e954e70
提交
0e954e70
authored
8月 23, 2021
作者:
许俊
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改字段
上级
c54dbdca
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
4 行增加
和
3 行删除
+4
-3
ProductionOrderWebapi.java
.../jeecg/modules/iost/API/webapi/ProductionOrderWebapi.java
+1
-1
ProductionSchedulingWebapi.java
...g/modules/iost/API/webapi/ProductionSchedulingWebapi.java
+1
-1
SalesOrderWebapi.java
...a/org/jeecg/modules/iost/API/webapi/SalesOrderWebapi.java
+2
-1
没有找到文件。
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/webapi/ProductionOrderWebapi.java
浏览文件 @
0e954e70
...
...
@@ -87,7 +87,7 @@ public class ProductionOrderWebapi implements web_api {
ProductionOrdermap
.
put
(
"productmodel"
,
list1
.
get
(
11
).
toString
());
//产品型号
ProductionOrdermap
.
put
(
"workshopname"
,
list1
.
get
(
12
).
toString
());
//生产车间名称
ProductionOrdermap
.
put
(
"ipostatus"
,
list1
.
get
(
13
).
toString
());
//生产订单状态
ProductionOrdermap
.
put
(
"id"
,
list1
.
get
(
14
).
toString
());
//实体主键 ,设置了后不能重复插入
ProductionOrdermap
.
put
(
"
f
id"
,
list1
.
get
(
14
).
toString
());
//实体主键 ,设置了后不能重复插入
ProductionOrderlist
.
add
(
ProductionOrdermap
);
}
}
...
...
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/webapi/ProductionSchedulingWebapi.java
浏览文件 @
0e954e70
...
...
@@ -68,7 +68,7 @@ public class ProductionSchedulingWebapi implements web_api {
ProductionSchedulingmap
.
put
(
"datasource"
,
"0"
);
//数据来源(固定写成0)
ProductionSchedulingmap
.
put
(
"purchaserhqcode"
,
"SGCC"
);
//采购方总部编码 SGCC
ProductionSchedulingmap
.
put
(
"datasourcecreatetime"
,
SubStringT
(
list1
.
get
(
0
).
toString
()));
//来源数据创建时间
ProductionSchedulingmap
.
put
(
"id"
,
list1
.
get
(
1
).
toString
());
//实体主键 ,设置了后不能重复插入
ProductionSchedulingmap
.
put
(
"
f
id"
,
list1
.
get
(
1
).
toString
());
//实体主键 ,设置了后不能重复插入
ProductionSchedulinglist
.
add
(
ProductionSchedulingmap
);
}
}
...
...
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/webapi/SalesOrderWebapi.java
浏览文件 @
0e954e70
...
...
@@ -76,6 +76,7 @@ public class SalesOrderWebapi implements web_api {
if
(!
list
.
isEmpty
())
{
for
(
List
<
Object
>
list1
:
list
)
{
Map
<
String
,
String
>
salesordermap
=
new
HashMap
<>();
salesordermap
.
put
(
"suppliercode"
,
"linqin"
);
//供应商编码
salesordermap
.
put
(
"purchaserhqcode"
,
"SGCC"
);
//采购方总部编码 固定为"SGCC"
salesordermap
.
put
(
"datasource"
,
"0"
);
//数据来源(固定写成0)
salesordermap
.
put
(
"datasourcecreatetime"
,
SubStringT
(
list1
.
get
(
0
).
toString
()));
//来源数据创建时间
...
...
@@ -85,7 +86,7 @@ public class SalesOrderWebapi implements web_api {
salesordermap
.
put
(
"productname"
,
list1
.
get
(
4
).
toString
());
// 物料名称
salesordermap
.
put
(
"productunit"
,
list1
.
get
(
5
).
toString
());
// 物料单位
salesordermap
.
put
(
"productamount"
,
list1
.
get
(
6
).
toString
());
//物料数量
salesordermap
.
put
(
"id"
,
list1
.
get
(
7
).
toString
());
//实体主键 ,设置了后不能重复插入
salesordermap
.
put
(
"
f
id"
,
list1
.
get
(
7
).
toString
());
//实体主键 ,设置了后不能重复插入
salesorderlist
.
add
(
salesordermap
);
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论