|
@@ -26,6 +26,7 @@ import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 动态表单插件(移动端)
|
|
* 动态表单插件(移动端)
|
|
|
|
|
+ * 薪酬项目-实发 JT_331 薪酬项目-应发 JT_283 薪酬项目-扣款小计 JT_408
|
|
|
* @author turborao
|
|
* @author turborao
|
|
|
* @date 2025/11/27
|
|
* @date 2025/11/27
|
|
|
*/
|
|
*/
|
|
@@ -213,23 +214,23 @@ public class EmpSalaryQueryMobFormPlugin extends AbstractMobFormPlugin implement
|
|
|
if(calItemAmtMap != null && calItemAmtMap.size() > 0 && itemNameMap != null && calItemAmtMap.size() > 0){
|
|
if(calItemAmtMap != null && calItemAmtMap.size() > 0 && itemNameMap != null && calItemAmtMap.size() > 0){
|
|
|
DecimalFormat df = new DecimalFormat("#,##0.00");
|
|
DecimalFormat df = new DecimalFormat("#,##0.00");
|
|
|
Label label1 = this.getView().getControl(KEY_LAB_REALAMT);
|
|
Label label1 = this.getView().getControl(KEY_LAB_REALAMT);
|
|
|
- if(calItemAmtMap.get("JT_331") == null){
|
|
|
|
|
|
|
+ if(calItemAmtMap.get(FormConstant.SALARYITEM_REAL) == null){
|
|
|
label1.setText("0.00");
|
|
label1.setText("0.00");
|
|
|
}else {
|
|
}else {
|
|
|
- label1.setText(df.format(calItemAmtMap.get("JT_331"))); //实发合计
|
|
|
|
|
|
|
+ label1.setText(df.format(calItemAmtMap.get(FormConstant.SALARYITEM_REAL))); //实发合计
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
Label label2 = this.getView().getControl(KEY_LAB_GROSSAMT);
|
|
Label label2 = this.getView().getControl(KEY_LAB_GROSSAMT);
|
|
|
- if(calItemAmtMap.get("JT_283") == null){
|
|
|
|
|
|
|
+ if(calItemAmtMap.get(FormConstant.SALARYITEM_GROSS) == null){
|
|
|
label2.setText("0.00");
|
|
label2.setText("0.00");
|
|
|
}else {
|
|
}else {
|
|
|
- label2.setText(df.format(calItemAmtMap.get("JT_283")));
|
|
|
|
|
|
|
+ label2.setText(df.format(calItemAmtMap.get(FormConstant.SALARYITEM_GROSS)));
|
|
|
}
|
|
}
|
|
|
Label label3 = this.getView().getControl(KEY_LAB_SUBAMT);
|
|
Label label3 = this.getView().getControl(KEY_LAB_SUBAMT);
|
|
|
- if(calItemAmtMap.get("JT383") == null){
|
|
|
|
|
|
|
+ if(calItemAmtMap.get(FormConstant.SALARYITEM_SUB) == null){
|
|
|
label3.setText("0.00");
|
|
label3.setText("0.00");
|
|
|
}else {
|
|
}else {
|
|
|
- label3.setText(df.format(calItemAmtMap.get("JT383")));
|
|
|
|
|
|
|
+ label3.setText(df.format(calItemAmtMap.get(FormConstant.SALARYITEM_SUB)));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
MobTable mobTable = getControl("nckd_mobtable");
|
|
MobTable mobTable = getControl("nckd_mobtable");
|