Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. 433c433,434
  2. < if (ntype == RuleObjectBuilder.getRC_DBDECIMAL_TYPE())
  3. ---
  4. > //Modified by Rebirthsoft. currency type is a kind of numeric type too.
  5. > if (ntype == RuleObjectBuilder.getRC_DBDECIMAL_TYPE() || ntype == RuleObjectBuilder.getRC_DBCURRENCY_TYPE())
  6. 642a644,649
  7. > //Modified by Rebirthsoft, to fix issue: 72031
  8. > if(right.left.str == null && right.left.sp != null && right.left.sp.name != null){
  9. > dc.append("-(");
  10. > RIGHTPRINT_SQLSERVER(r, dc, colVar, funcNodeInfo,skipVBCall);
  11. > dc.append(")");
  12. > } else{
  13. 644c651,652
  14. < break;
  15. ---
  16. > }
  17. > break;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement