phronCare/Domain/Constants/SalesDocumentOriginType.cs
leandro 3b4f664ae9
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 6m51s
feat(core): normalize sales document origin types
closes #62
2026-05-08 00:15:11 -03:00

12 lines
203 B
C#

namespace Domain.Constants
{
public enum SalesDocumentOriginType : int
{
Manual = 1,
QuoteDetail = 2,
Adjustment = 3,
Capita = 4,
DeliveryNote = 5
}
}