This commit is contained in:
liangjunyu
2025-09-27 04:54:57 +08:00
parent 1077ad0f74
commit 1774893c6f
8 changed files with 286 additions and 39 deletions

View File

@@ -29,13 +29,11 @@ namespace aoyuPlugIn
if (e.BarItemKey == "tbSplitSubmit" || e.BarItemKey == "tbSubmit")//提交
{
fxjdb();
}
}
void fxjdb()
private void fxjdb()
{
try
{
@@ -53,14 +51,17 @@ namespace aoyuPlugIn
if (zt == "A" || zt == "D")
{
sc_mx(fdate);
}
}
}
}
}
catch (Exception ex) { this.View.ShowMessage("生成计件工资明细时发生错误为:" + ex.Message); }
catch (Exception ex)
{
this.View.ShowMessage("生成计件工资明细时发生错误为:" + ex.Message);
}
}
//生成员工计件工资明细
void sc_mx(string fdate)
private void sc_mx(string fdate)
{
try
{
@@ -74,4 +75,4 @@ namespace aoyuPlugIn
}
}
}
}
}