Status | ID | Priority | Type |
Closed | 30146 | Major | Question |
Profile | Reply |
gabossoloClient | How to have an application settings value in business numerator? Thank you! |
User | Description | Posted On |
MariyaVoytovichAgent | Hello gabjssolo! I did not quite understand your task. Feel free to contact us if you have any questions. Regards, | |
gabossoloClient | Hi Mariya ! Sorry for my bad english. This is how to get a setting value from the code: if (SettingsAccessor.Instance == null) return; And my question is how to use the SettingsAccessor value in a Business Numerators? I would like to have: Invoice.Prefix.Value_{0:,0000} Example: CTL00001 I hope I was more explicit... Regards, GB | |
gabossoloClient | Hi ! I found another way around my difficulty... SOLUTION: public override void AfterConstruction() if (SettingsAccessor.Instance == null || ((InheritedUser) SecuritySystem.CurrentUser).Site == null) return; [Browsable(false)] And then appy this template: {0:NumberPart}{0:,000000} | |
gabossoloClient | Hi ! I found another way around my difficulty... SOLUTION: public override void AfterConstruction() if (SettingsAccessor.Instance == null || ((InheritedUser) SecuritySystem.CurrentUser).Site == null) return; [Browsable(false)] And then appy this template: {0:NumberPart}{0:,000000} |