Hi,
Have had similar use case. Generally you need to write some custom logic to take care of the scenario, that's what I did.
Any code samples on how to build/ add workflows into the abp commercial app ?
i.e Employee Leave Applications Approvals etc.
Have created a new app and i don't seem to see the new module: forms as per pre release notes.
How can i review it ?
I was able to download after unchecked the public website
Error occured while downloading source-code from https://abp.io/api/download/template/ : The request was canceled due to the configured HttpClient.Timeout of 300 seconds elapsing. [22:16:35 ERR] ---------- RemoteServiceErrorInfo ---------- { "code": null, "message": "An internal error occurred during your request!", "details": null, "data": {}, "validationErrors": null }
[22:16:35 ERR] The request was canceled due to the configured HttpClient.Timeout of 300 seconds elapsing. System.Threading.Tasks.TaskCanceledException: The request was canceled due to the configured HttpClient.Timeout of 300 seconds elapsing. ---> System.TimeoutException: The operation was canceled. ---> System.Threading.Tasks.TaskCanceledException: The operation was canceled. ---> System.IO.IOException: The read operation failed, see inner exception. ---> System.ObjectDisposedException: Cannot access a disposed object. Object name: 'SslStream'.
Every SaaS requires a billing and subscription module. Just features like;
It would be greate if abp commercial would provide the basic framework to achieve above then we can tailor make it to our own use cases.
Infact I think, this is the most important element for a SaaS app.
Thank you.
2.3 am also planning to upgrading to 4.3
The
JsonProperty
attribute namespace should belongNewtonsoft.Json
, Can you check? Yes this belongs to Newtonsoft.json but it doesn't work on abp, seems the abp api generator doesn't recognise property namesAny shortcut to change this without passing through the ABP source code ?
Default value of
MaxMaxResultCount
will be 1,000. SetLimitedResultRequestDto.MaxMaxResultCount
static property to increase it. Which specific file in my project can I set this?
What is your ABP Framework version?
2.3 am also planning to upgrading to 4.3
https://github.com/abpframework/abp/blob/3fcdeeeb05810b7a2e162f212ef435b81d412aa5/framework/src/Volo.Abp.Ddd.Application.Contracts/Volo/Abp/Application/Dtos/LimitedResultRequestDto.cs#L25
Any shortcut to change this without passing through the ABP source code ?
I don't seem to get json property names working.
abp seems to normalise every request response regardless of the json property names. see below sample and how have set my field properties. how can I.get it to work and have my API responses reflect well i.e CityName ? I also want to return 5,000 records per page for this service, the default seems to be 1,000 max.
public class Videogame { [JsonProperty("CityName")] public string City_Name { get; set; } [JsonProperty("ReleaseDate")] public DateTime Release_Date { get; set; } }