- 浏览: 147685 次
- 性别:
- 来自: 深圳
文章分类
最新评论
--贷方金额是支付出去的钱
--借方金额是收到的钱
--企业账单,银行账单校验方法
AuditCorpBookDaoImpl.java
企业账发送银行的记录 稽核的方法
loadSendCorpBookDetail
String hql = "select distinct a,tl.requTime,tl.respTime,tl.payeeAccountNO " +
" from AuditCorpBook a,PaymentList pl,TransferBill t,TransferBillList tl" +
" where a.isBatch=0 and a.voucherDetailNO = pl.voucherDetailNO " +
"and a.voucherNO = pl.voucherNO and a.voucherDate = pl.voucherDate " +
"and pl.paySerial = t.paySerialNO" +
" and t.transferBillID = tl.transferBill.transferBillID and a.isAudit = 0" +
" and a.bankAccount.accountID = :subjectId and pl.isUsed = " + PaymentList.USED +
" and a.voucherDate >= :beginDate and a.voucherDate < :endDate" +
" and t.dataState.stateID = "+ DataState.STATE_APPROVAL_SUCCESS +
" and t.transferType.typeID = " + TransferType.Type_DWZF +
" and tl.bankState.bankStateID = " + BankState.STATE_ZHILING_SUCCESS+
" and t.transferWay="+TransferBill.TransferWay_DZ;
转换后的SQL:
select distinct acb.*, tbl.requTime, tbl.respTime, tbl.payeeAccountNO
from CMCS3_AUDIT_CORP_BOOK acb,
cmcs3_payment_list pl,
cmcs3_transfer_bill tb,
cmcs3_transfer_bill_list tbl
where acb.isBatch = 0 and acb.voucherNO = pl.voucherID
and pl.paySerial = tb.paySerialNO
and tb.transferBillID = tbl.transferBillID
and acb.isaudit = 0
and acb.accountID = ? and pl.isUsed = 1
and acb.voucherDate >= to_date('2012-04-01','yyyy-mm-dd') and acb.voucherDate < to_date('2012-05-01','yyyy-mm-dd')
and tb.stateID = 2
and tb.typeID = 3
and tbl.bankStateID = 3
and tb.transferWay = 1;
--根据省市得到地区编码方法
select * from Cmcs3_Bank_Area;
this.getAreas().getArea(province, city); 后台方法也可以直接用这个
--能制单的出纳
select u.username from cmcs3_payment_list pl ,cmcs3_user u
where pl.userid = u.userid and pl.isused = 0
group by u.username;
--回单确认失败会在 cmcs3_transfer_error 增长一条数据
select e.* from cmcs3_transfer_error e
where e.billid = 278125 ; 278125 代表transferbillID
--支付结果查询,拥有查询权限的账号
select u.username
from cmcs3_bank_account ba, cmcs3_user_account ua, cmcs3_user u
where ba.accountid = ua.accountid
and ua.userid = u.userid
and ua.powertype = 0
and ua.isaudit = 1
group by u.username;
--重置密码
MD5Encrypt
public static void main(String[] args) {
String a = encrypt("hufei@fj.cmcc","888888","2010-12-15 19:03:45");
System.out.print(a);
}
把密文和明文跟新到数据库就行了
用户锁定 就将userstate改为 0
--用SQL更改,重置密码
update cmcs3_user o set o.password = 'c2e2d18d690e900c5659843e8ff8648e',
o.pwdupdatetime=to_date('2013-08-01 16:08:00','yyyy-mm-dd hh24:mi:ss')
where o.username = 'xiangcun@js.cmcc';
commit;
电信 M8 同步凭证
移动 MIS 同步凭证
--借方金额是收到的钱
--企业账单,银行账单校验方法
AuditCorpBookDaoImpl.java
企业账发送银行的记录 稽核的方法
loadSendCorpBookDetail
String hql = "select distinct a,tl.requTime,tl.respTime,tl.payeeAccountNO " +
" from AuditCorpBook a,PaymentList pl,TransferBill t,TransferBillList tl" +
" where a.isBatch=0 and a.voucherDetailNO = pl.voucherDetailNO " +
"and a.voucherNO = pl.voucherNO and a.voucherDate = pl.voucherDate " +
"and pl.paySerial = t.paySerialNO" +
" and t.transferBillID = tl.transferBill.transferBillID and a.isAudit = 0" +
" and a.bankAccount.accountID = :subjectId and pl.isUsed = " + PaymentList.USED +
" and a.voucherDate >= :beginDate and a.voucherDate < :endDate" +
" and t.dataState.stateID = "+ DataState.STATE_APPROVAL_SUCCESS +
" and t.transferType.typeID = " + TransferType.Type_DWZF +
" and tl.bankState.bankStateID = " + BankState.STATE_ZHILING_SUCCESS+
" and t.transferWay="+TransferBill.TransferWay_DZ;
转换后的SQL:
select distinct acb.*, tbl.requTime, tbl.respTime, tbl.payeeAccountNO
from CMCS3_AUDIT_CORP_BOOK acb,
cmcs3_payment_list pl,
cmcs3_transfer_bill tb,
cmcs3_transfer_bill_list tbl
where acb.isBatch = 0 and acb.voucherNO = pl.voucherID
and pl.paySerial = tb.paySerialNO
and tb.transferBillID = tbl.transferBillID
and acb.isaudit = 0
and acb.accountID = ? and pl.isUsed = 1
and acb.voucherDate >= to_date('2012-04-01','yyyy-mm-dd') and acb.voucherDate < to_date('2012-05-01','yyyy-mm-dd')
and tb.stateID = 2
and tb.typeID = 3
and tbl.bankStateID = 3
and tb.transferWay = 1;
--根据省市得到地区编码方法
select * from Cmcs3_Bank_Area;
this.getAreas().getArea(province, city); 后台方法也可以直接用这个
--能制单的出纳
select u.username from cmcs3_payment_list pl ,cmcs3_user u
where pl.userid = u.userid and pl.isused = 0
group by u.username;
--回单确认失败会在 cmcs3_transfer_error 增长一条数据
select e.* from cmcs3_transfer_error e
where e.billid = 278125 ; 278125 代表transferbillID
--支付结果查询,拥有查询权限的账号
select u.username
from cmcs3_bank_account ba, cmcs3_user_account ua, cmcs3_user u
where ba.accountid = ua.accountid
and ua.userid = u.userid
and ua.powertype = 0
and ua.isaudit = 1
group by u.username;
--重置密码
MD5Encrypt
public static void main(String[] args) {
String a = encrypt("hufei@fj.cmcc","888888","2010-12-15 19:03:45");
System.out.print(a);
}
把密文和明文跟新到数据库就行了
用户锁定 就将userstate改为 0
--用SQL更改,重置密码
update cmcs3_user o set o.password = 'c2e2d18d690e900c5659843e8ff8648e',
o.pwdupdatetime=to_date('2013-08-01 16:08:00','yyyy-mm-dd hh24:mi:ss')
where o.username = 'xiangcun@js.cmcc';
commit;
电信 M8 同步凭证
移动 MIS 同步凭证
发表评论
文章已被作者锁定,不允许评论。
-
多表头的处理
2013-12-12 15:49 0多表头的处理 -
发给前方删除审批流当中的SQL
2013-11-13 08:59 423--在手工修改数据之前一定要先确认好,是否是对应的那条数据 ... -
BCDL 流程表应用
2013-10-06 13:14 678select * from cmcs3_process_u ... -
银企互联接口和报账接口
2013-07-09 14:54 0我 -
BCDL常用JS
2013-05-23 10:11 8091. Number(splitJoin($F(&quo ... -
接下来要看的知识点
2013-03-25 16:35 747--福建移动 交易明细补全功能:目前系统采取6:00-8 ... -
密码加密
2013-03-21 13:55 0CustomEdition/Oracle/WebConten ... -
获得待处理电子凭证链接地址
2013-03-20 18:33 587// 获得待处理电子凭证链接地址 2013-1-5 zha ... -
待办已办视图改造 速度优化
2013-03-20 09:25 0-- 待办已办视图改造 beginDROP VIEW CMB ... -
移植 SVN
2013-03-18 11:04 593SVN移植步骤:1、新建一个Maven项目 Maven ... -
培训 杂揉
2012-12-27 15:22 717--凭证导入 M8InterfaceA ... -
BCDL 培训业务1 同步凭证 制单提交审批 回单确认 复制
2012-12-27 09:48 878--青海电信 同步凭证 ... -
BCDL 行业应用
2012-12-19 18:01 792江苏,新疆,湖北电信 IP访问策略云南电信 版本显示,银 ... -
单例模式例子
2012-12-12 11:04 488=============如下是一个单例例子========= ... -
银企互联中间表
2012-12-07 10:58 487-----存放单位编码和帐套信息的表 DROP TABLE ... -
会用到不一定记得的方法3
2012-11-28 13:57 683/** * * 如果查询条件包含账套,必须调用此公用方法,因 ... -
新人了解BCDL文档
2012-11-28 10:36 944--写了一个简单的文档让新人初步了解BCDL -
BCDL常用接口
2012-11-22 17:04 693--交易明细补全功能 <!--EndFragment- ... -
开发BCDL实际过程中需要注意的问题
2012-11-20 14:39 409--1. 开发过程中最严重的错误 a. 与需求不符 ... -
解决福建批量复核慢
2012-11-14 09:40 726--解决福建批量复核慢的,以后其他省也可以这样 DROP I ...
相关推荐
【标题】:“新人了解BCDL文档” 在IT领域,BCDL(可能代表某种特定的编程语言、框架或数据格式)是新手需要掌握的关键概念之一。...通过深入学习和实践,新手可以逐步熟悉并掌握BCDL,从而在IT领域中奠定坚实的基础。
bcdl 从 Bandcamp 免费/付费下载您想要的专辑的脚本 我厌倦了声称从 Bandcamp 下载“FLAC”的脚本,而实际上只是翻录了网站使用的 128kpbs MP3 预览流。 这个脚本实际上模拟了“购买”你想要的免费... 自己编译: 安装g
bcdl <= bcdl + 1; elsif (bcdl = "1001") then bcdl ; bcdh ; else bcdl <= bcdl + 1; end if; end if; end if; end process; end architecture aa; ``` ##### 60进制计数器 ```vhdl -- 定义60进制...
通过对这些指令的学习与掌握,工程师能够更好地利用欧姆龙PLC进行程序设计与调试工作。 #### 二、指令分类与功能详解 根据文档提供的部分内容,我们可以将指令分为几大类进行详细解读: ##### 1. **逻辑运算指令*...
2. **定时器和计数器指令**:例如`TIM`用于设定定时器,根据预设时间执行特定任务;`CNT`用于计数输入信号的次数,达到预设值时触发特定动作。 3. **比较指令**:如`ON UP`和`OFF DOWN`,用于判断输入信号状态的...
##### 2. Mitsubishi - **传送和比较** - **CMP/BCD/MOV/FMOV/CML/XCH/BMOV/ZCP/BIN**: 比较、二进制转换、传送、多点传送、反相传送、交换、成批传送和区域比较指令。 - **四则逻辑运算** - **ADD/MUL/SUB/DIV/...