@liruiyi962464
2019-04-18T05:06:34.000000Z
字数 3146
阅读 382
工作总结
审核页面出现procInstId与查找的不匹配 应该去插入的那张表中找这个id 而不是在查找的那个表中找
- if(outBase.getParamlist() != null) {
这句话表示查询详情表中有没有插入数据 在此页面中有返回patamlist数据
$(".account").textbox({
onChange:function(m){
var totalMoney=$("#totalMoney").val();
var hw=$("#useHwAccount").textbox("getValue");
var agent=$("#useAgentAccount").textbox("getValue");
var realMoney=0;
if(hw == '' ) hw=0;
if(agent == '') agent=0;
realMoney=totalMoney-hw-agent;
$("#realPay").textbox('setValue',realMoney);
}
})
dao层传入两个参数需要加@Param("参数名字") sql中不需要参数类型
405问题是由于只能使用post去接收参数 而并非是get
流程提交不了的问题 是提交时候的formid和 form中的定义id名字不一致
前端页面中可以设置搜到的名字到想要设置的名字中 见礼品入库页面
combogrid 下拉选不中文字的情况 是由于idField 写成了valueField
comgriod 中保含idfiled 和textfield combox 中保含valuefiled 和textField:
easyui 中
var isValid = $(this).form('enableValidation').form('validate');
//是在跳转的时候检查有没有没有输入的框
There is no getter for property named xml文件中出现了没有与之对应的字段名称
前端页面出现nodename 是因为在选择当前下拉框时 赋值的table 的id对接不上
16 前端页面不能正常赋值
前端页面不能正常赋值 是因为没有写edit 当前默认是不可编辑的
select t.*, t.rowid from JXC_INDEPOT_BASE t where t.effective_date between to_date('2018-12-1 00:00:00','yyyy-mm-dd hh24:mi:ss') and to_date('2019-01-20 23:59:59','yyyy-mm-dd hh24:mi:ss')
and t.bill_type='10';
SELECT to_date('2019-01-01', 'yyyy-mm-dd') + ROWNUM - 1 sdate
FROM dual
CONNECT BY ROWNUM <= to_date('2019-02-25', 'yyyy-mm-dd') -
to_date('2019-01-01', 'yyyy-mm-dd') + 1
SELECT to_date(to_char(sysdate,'yyyy-mm-dd'), 'yyyy-mm-dd')+ ROWNUM - 1 sdate
FROM dual
CONNECT BY ROWNUM <= to_date('2019-04-25', 'yyyy-mm-dd') -
to_date(to_char(sysdate,'yyyy-mm-dd'), 'yyyy-mm-dd') + 1
是因为流程图上的分支写错了{'flow17':'pass','flow18':'pass'} 看看是不是错了 没有引号之类的
值大于为此列指定的允许精度 是因为在number(..,..) 中前者减去后者的个数比你传入的值小
中的值就是 业务流程ID:的数字
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd")
flashTable('supervise_list_id');
//业务日期
Map<String, Object> dateMap = DateUtil.dateBusi(fiIcPayBase.getBusiDate());
dateMap.put("busiYear", busiYear);// 获取年份
dateMap.put("busiMonth", busiMonth);// 获取月份
dateMap.put("busiYearMonth", busiYearMonth);// 业务年月
dateMap.put("companyYear", companyYear);// 公司财年
是因为mapper中的form没有加form.去寻找form中的类型
String outMoneyUpper =MoneyUtils.convert(MoneyUtils.moneyFormat(fiBase.getOutMoney().toString()));
fiBase.setOutMoneyUpper(outMoneyUpper);
@PathVariable 该注解只能给基本类型的 不能在实体类前加
<if test="@Ognl@isNotEmpty(qStartDate)"> AND to_char(b.EFFECTIVE_DATE, 'yyyy-mm-dd' ) >= #{qStartDate}
</if>
<if test="@Ognl@isNotEmpty(qEndDate)"> AND to_char(b.EFFECTIVE_DATE, 'yyyy-mm-dd') <=#{qEndDate} </if>
<if test="@Ognl@isNotEmpty(form.qEntryDate)">AND <![CDATA[b.effective_date >=to_date(#{form.qEntryDate},'yyyy-mm-dd')]]>
</if><if test="@Ognl@isNotEmpty(form.qEndDate)">AND <![CDATA[b.effective_date <=to_date(#{form.qEndDate},'yyyy-mm-dd')]]>
</if>
return new Response().failure()
ExActReNode node=this.exActReNodeDao.listByActivitiId(pi.getProcessDefinitionId(), pi.getActivityId()).get(0);
if(pass == FlowHandle.SUCCESS&& node.getDataEffect() ==1) {
// 想要的操作
}