wherehouse: add sender field to stock movemend model

This commit is contained in:
behruz-dev
2025-10-31 21:49:47 +05:00
parent f49a446c71
commit 0c2d73f892
5 changed files with 51 additions and 4 deletions

View File

@@ -27,6 +27,9 @@ class StockMovemend(BaseModel):
recipient = models.ForeignKey(
User, on_delete=models.SET_NULL, related_name='stock_movmends', null=True, blank=True
)
sender = models.ForeignKey(
User, on_delete=models.SET_NULL, related_name='stock_sender', null=True, blank=True
)
project_folder = models.ForeignKey(
ProjectFolder, on_delete=models.SET_NULL, related_name='stock_movmends', null=True, blank=True
)