Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
CZXT
Project
Project
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
Graph
比较
统计图
议题
0
议题
0
列表
看板
标记
Milestones
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
谭富强
CZXT
Commits
8fdb3e81
提交
8fdb3e81
authored
7月 19, 2025
作者:
谭富强
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改成固定值,用来调试云环境;
上级
fe5c2c4e
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
56 行增加
和
9 行删除
+56
-9
CZXT.kdsln.config
CZXT.kdsln.config
+2
-1
WarehouseRentReport.cs
Code/LQKJ.K3.CZXT.Pluglus/WarehouseRentReport.cs
+15
-3
Warehouserent_MXBB.cs
Code/LQKJ.K3.CZXT.Pluglus/Warehouserent_MXBB.cs
+15
-3
app.pkgdef
Code/app.pkgdef
+24
-2
没有找到文件。
CZXT.kdsln.config
浏览文件 @
8fdb3e81
...
...
@@ -7,7 +7,7 @@
<
ProjectRefPath
>
D
:\谭富强工作目录\仓租系统\
CZXT
\
CZXT
\
K3Cloud
\
bin
</
ProjectRefPath
>
<
IsAutoCheckIn
>
1
</
IsAutoCheckIn
>
<
IsStartScc
>
1
</
IsStartScc
>
<
LastExpandPackageNodeID
>
-
1
</
LastExpandPackageNodeID
>
<
LastExpandPackageNodeID
>
488
a8668
-
0
ea1
-
4
e70
-
abc8
-
a64597862bbd
</
LastExpandPackageNodeID
>
<
SCCCfg
>
</
SCCCfg
>
</
KDSolution
>
\ No newline at end of file
Code/LQKJ.K3.CZXT.Pluglus/WarehouseRentReport.cs
浏览文件 @
8fdb3e81
...
...
@@ -218,7 +218,11 @@ namespace LQKJ.K3.CZXT.Pluglus
throw
new
Exception
(
"物料收发明细表没有专用过滤方案!"
);
}
// 创建一个唯一的临时表名 tmpTableName
string
tmpTableName
=
AppServiceContext
.
DBService
.
CreateTemporaryTableName
(
base
.
Context
);
string
tmpTableName
=
"tmpTableName2025050604"
;
//AppServiceContext.DBService.CreateTemporaryTableName(base.Context)
if
(
DBUtils
.
IsExistTable
(
this
.
Context
,
tmpTableName
))
{
DBUtils
.
Execute
(
this
.
Context
,
"drop table "
+
tmpTableName
+
";"
);
}
//创建一个空的临时表 tmpTableName
CreateTmpTable
(
tmpTableName
);
DataTable
receBillTable
=
new
DataTable
();
...
...
@@ -247,7 +251,11 @@ namespace LQKJ.K3.CZXT.Pluglus
receBillTable
.
BeginInit
();
// 创建一个唯一的临时表名 tmpTableName
string
tmpTableNameS
=
AppServiceContext
.
DBService
.
CreateTemporaryTableName
(
base
.
Context
);
string
tmpTableNameS
=
"tmpTableName2025050605"
;
//AppServiceContext.DBService.CreateTemporaryTableName(base.Context)
if
(
DBUtils
.
IsExistTable
(
this
.
Context
,
tmpTableNameS
))
{
DBUtils
.
Execute
(
this
.
Context
,
"drop table "
+
tmpTableNameS
+
";"
);
}
//创建一个空的临时表 tmpTableName
CreateTmpTableS
(
tmpTableNameS
);
DataTable
receBillTableS
=
new
DataTable
();
...
...
@@ -1404,7 +1412,11 @@ UPDATE SET
// 创建临时表
private
DataTable
CreateTmpTable
()
{
this
.
tmpRptTbl
=
new
DBService
().
CreateTemporaryTableName
(
base
.
Context
);
// 创建临时表名
this
.
tmpRptTbl
=
"tmpTableName2025050606"
;
// 创建临时表名 new DBService().CreateTemporaryTableName(base.Context)
if
(
DBUtils
.
IsExistTable
(
this
.
Context
,
tmpRptTbl
))
{
DBUtils
.
Execute
(
this
.
Context
,
"drop table "
+
tmpRptTbl
+
";"
);
}
DataTable
db
=
new
DataTable
(
this
.
tmpRptTbl
);
// 初始化DataTable对象
// 列出表中所有字段
List
<
string
>
vs
=
new
List
<
string
>();
...
...
Code/LQKJ.K3.CZXT.Pluglus/Warehouserent_MXBB.cs
浏览文件 @
8fdb3e81
...
...
@@ -232,7 +232,11 @@ namespace LQKJ.K3.CZXT.Pluglus
throw
new
Exception
(
"物料收发明细表没有专用过滤方案!"
);
}
// 创建一个唯一的临时表名 tmpTableName
string
tmpTableName
=
AppServiceContext
.
DBService
.
CreateTemporaryTableName
(
base
.
Context
);
string
tmpTableName
=
"tmpTableName2025050601"
;
//AppServiceContext.DBService.CreateTemporaryTableName(base.Context)
if
(
DBUtils
.
IsExistTable
(
this
.
Context
,
tmpTableName
))
{
DBUtils
.
Execute
(
this
.
Context
,
"drop table "
+
tmpTableName
+
";"
);
}
//创建一个空的临时表 tmpTableName
CreateTmpTable
(
tmpTableName
);
DataTable
receBillTable
=
new
DataTable
();
...
...
@@ -261,7 +265,11 @@ namespace LQKJ.K3.CZXT.Pluglus
receBillTable
.
BeginInit
();
// 创建一个唯一的临时表名 tmpTableName
string
tmpTableNameS
=
AppServiceContext
.
DBService
.
CreateTemporaryTableName
(
base
.
Context
);
string
tmpTableNameS
=
"tmpTableName2025050602"
;
//AppServiceContext.DBService.CreateTemporaryTableName
if
(
DBUtils
.
IsExistTable
(
this
.
Context
,
tmpTableNameS
))
{
DBUtils
.
Execute
(
this
.
Context
,
"drop table "
+
tmpTableNameS
+
";"
);
}
//创建一个空的临时表 tmpTableName
CreateTmpTableS
(
tmpTableNameS
);
DataTable
receBillTableS
=
new
DataTable
();
...
...
@@ -1079,7 +1087,11 @@ UPDATE SET
// 创建临时表
private
DataTable
CreateTmpTable
()
{
this
.
tmpRptTbl
=
new
DBService
().
CreateTemporaryTableName
(
base
.
Context
);
// 创建临时表名
this
.
tmpRptTbl
=
"tmpTableName2025050603"
;
// 创建临时表名 new DBService().CreateTemporaryTableName(base.Context)
if
(
DBUtils
.
IsExistTable
(
this
.
Context
,
tmpRptTbl
))
{
DBUtils
.
Execute
(
this
.
Context
,
"drop table "
+
tmpRptTbl
+
";"
);
}
DataTable
db
=
new
DataTable
(
this
.
tmpRptTbl
);
// 初始化DataTable对象
// 列出表中所有字段
List
<
string
>
vs
=
new
List
<
string
>();
...
...
Code/app.pkgdef
浏览文件 @
8fdb3e81
<?xml version="1.0" encoding="utf-8"?>
<AssemblyModel
xmlns:xs
d=
"http://www.w3.org/2001/XMLSchema"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance
"
>
<AssemblyModel
xmlns:xs
i=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd=
"http://www.w3.org/2001/XMLSchema
"
>
<Id>
be1dab40-8eea-4963-9b9b-83b8f69d284d
</Id>
<MasterId>
K3Cloud
</MasterId>
<Name>
程序集包
</Name>
...
...
@@ -39,7 +39,29 @@
<KDComponent
xsi:type=
"ConentComponent"
>
<Target>
CompileAndPackage
</Target>
<Name>
LQKJ.K3.CZXT.Pluglus.dll
</Name>
<ComponentPath>
..\k3cloud\bin\LQKJ.K3.CZXT.Pluglus.dll
</ComponentPath>
<ComponentPath>
LQKJ.K3.CZXT.Pluglus.dll
</ComponentPath>
<Type>
ContentFile
</Type>
<OpeType>
AddOrUpdate
</OpeType>
<IsSign>
false
</IsSign>
<IsIgnoreError>
false
</IsIgnoreError>
<OutputPath>
Bin
</OutputPath>
<Condition
/>
</KDComponent>
<KDComponent
xsi:type=
"ConentComponent"
>
<Target>
CompileAndPackage
</Target>
<Name>
LQKJ.WebApi.Core.dll
</Name>
<ComponentPath>
LQKJ.WebApi.Core.dll
</ComponentPath>
<Type>
ContentFile
</Type>
<OpeType>
AddOrUpdate
</OpeType>
<IsSign>
false
</IsSign>
<IsIgnoreError>
false
</IsIgnoreError>
<OutputPath>
Bin
</OutputPath>
<Condition
/>
</KDComponent>
<KDComponent
xsi:type=
"ConentComponent"
>
<Target>
CompileAndPackage
</Target>
<Name>
LQKJ.WebApi.Stub.dll
</Name>
<ComponentPath>
LQKJ.WebApi.Stub.dll
</ComponentPath>
<Type>
ContentFile
</Type>
<OpeType>
AddOrUpdate
</OpeType>
<IsSign>
false
</IsSign>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论