跳至内容
菜单
此问题已终结
2 回复
4862 查看

Kindly take a look at this code and correct me if i am wrong

The following code

 <blockTable style="Table4">
  <tr>
    <td>
      <para style="P26">
              <seqReset id="seq_1"/>
      </para>
    </td>
 </tr>
</blockTable>
<blockTable style="Table4">
  <tr>
    <td>
      <para style="P26">  <seq id="seq_1"/>.<seq id="seq_2"/>   </para>
    </td>
 </tr>
</blockTable>

Outputs:

1..1

1..2

1..3

Whereas the following code

 <blockTable style="Table4">
  <tr>
    <td>
      <para style="P26">
              <seqReset id="seq_1"/>
      </para>
    </td>
 </tr>
</blockTable>
<blockTable style="Table4">
  <tr>
    <td>
      <para style="P26">  <seq id="seq_1"/><seq id="seq_2"/>   </para>
    </td>
 </tr>
</blockTable>

Outputs:

11

12

13

What i actually require is

1.1

1.2

1.3

I am implementing this report for openerp7 module. Kindly Clarify. Thanks for your time.

形象
丢弃

really strange one!

最佳答案

this workes for me: 

<para style="P26"><seq id="seq_1"/><font>.</font><seq id="seq_2"></para


形象
丢弃
相关帖文 回复 查看 活动
3
7月 24
8371
0
4月 17
3099
1
4月 17
4486
0
3月 15
4581
1
3月 15
5158