Skip to main content
Solved

Recording whole number without decimal in a field

  • September 29, 2022
  • 3 replies
  • 270 views

Hello all,

 

Is there a way to make in input field that currently takes decimal number to take only a whole number?  We have a few fields that are only used to record output quantity and scrap.  To reduce errors i would like to remove decimal places as we would never scrap part of something.  example We output 16 we scrap 3. 

Thank for any help you can provide.

Best answer by deybanperez83

Yes, you can define the PXDecimal attribute of the field in the following way:
 

[PXDBDecimal(0)]

 

The PXDBDecimal attribute constructor has a parameter called Precision, you can use it to define how many decimals you want to display in the interface and how many decimals you want to handle when using that field. The precision must be <= than the defined in the DB Schema.

 


Ex.

Before:

[PXDBDecimal(2)]



After:
 

[PXDBDecimal(0)]

 




 

View original
Did this topic help you find an answer to your question?

3 replies

Vinay Koppula
Semi-Pro II
Forum|alt.badge.img+1
  • Semi-Pro II
  • 125 replies
  • September 30, 2022

Hi @jmeagher, You have used PXDBDecimalAttribute for those fields in the DAC, correct me if I’m wrong. If so, then use PXDBIntAttribute instead PXDBDecimalAttribute. This should resolve your issue. 

 

Since you are changing the datatype you have to write a script to change the DataType from Decimal to Int in the DB as well. 


deybanperez83
Jr Varsity III
  • Jr Varsity III
  • 13 replies
  • Answer
  • September 30, 2022

Yes, you can define the PXDecimal attribute of the field in the following way:
 

[PXDBDecimal(0)]

 

The PXDBDecimal attribute constructor has a parameter called Precision, you can use it to define how many decimals you want to display in the interface and how many decimals you want to handle when using that field. The precision must be <= than the defined in the DB Schema.

 


Ex.

Before:

[PXDBDecimal(2)]



After:
 

[PXDBDecimal(0)]

 




 


  • Author
  • Freshman I
  • 3 replies
  • October 3, 2022

Thank you both for responding to my thread, I am trying to learn more and more of the customizations I can do to help the company I work for. 


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings