feat: manual payment package-based + StockMovement constraint fix
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 7m23s

- ManualPayment: add package_id to proto, handler selects package by ID
- ManualPayment: remove manual amount input, use package price
- ManualPayment: validator now checks PackageId instead of Amount
- StockMovement: fix CHECK constraint (store negative qty for decreases)
- StockMovement: Reserved/Released don't change physical Quantity
- Proto NuGet bumped to 0.0.192
This commit is contained in:
masoodafar-web
2026-03-11 23:44:28 +03:30
parent 1a0bb83c99
commit 0e9d0cad2f
7 changed files with 113 additions and 18 deletions
@@ -3,7 +3,7 @@
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.190</Version>
<Version>0.0.192</Version>
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
@@ -72,13 +72,14 @@ enum ManualPaymentStatus
message CreateManualPaymentRequest
{
int64 user_id = 1;
int64 amount = 2;
int64 amount = 2; // [DEPRECATED] مبلغ از پکیج خوانده می‌شود — نادیده گرفته می‌شود
ManualPaymentType type = 3;
string description = 4;
google.protobuf.StringValue reference_number = 5;
google.protobuf.StringValue image_path = 6;
google.protobuf.Int64Value image_document_id = 7;
FileUploadModel image_file = 8;
int64 package_id = 9; // شناسه پکیج — اگر 0 باشد، پکیج پایه استفاده می‌شود
}
message CreateManualPaymentResponse