日期:2014-05-17  浏览次数:20942 次

Java语言如何实现财务系统里面的凭证录入功能,请求大虾们出手!
最好是提供java语言实现凭证入录界面代码....

------解决方案--------------------
凭证录入,用友那种的录入。上面是表头,下面是列表,存具体凭证分录。
用SWT控件差不多可以实现类似功能。只是j2ee那些东东可能还不够,加其它第三方包来做,也一样是java程序。不用非得拿api那些类,那些类不足以(或实现起来很难)的时候那怎么办?
------解决方案--------------------
给你做了个样例,为了对齐方便,我给边框用了 绿色。

效果图:


代码(你贴的那张图,命名为 bg.png 放在同级目录就行了):
HTML code

<html>
<head>
<style>
input {
  background-color: transparent;
  border: 1 solid green;
  font-family: '黑体';
  font-weight: bold;
  letter-spacing: -1px;
  text-align: right;
  width:142px;
}
</style>
</head>
<body>
<div style="background-image:url('bg.png'); position:absolute; z-index:0; width:800px; height:500px;">
<div style="position:absolute; z-index:999; left:486px; top:206px; width:142px">
  <input name="money" type="text" value="88888888888888"  />
</div>
<div style="position:absolute; z-index:999; left:486px; top:236px; width:142px">
  <input name="money" type="text" value="11111111111111" />
</div>
</body>
</html>