Merge branch 'feature/server-side-render-actions-trade' of github.com:eReuse/devicehub-teal into feature/server-side-render-actions-trade
This commit is contained in:
commit
eed2849af3
|
@ -727,9 +727,10 @@ class TradeForm(NewActionForm):
|
|||
code = self.code.data
|
||||
|
||||
if user_from and user_to:
|
||||
# both users exist, no further action is necessary
|
||||
return
|
||||
|
||||
# Creating receiver phantom account
|
||||
# Create receiver (to) phantom account
|
||||
if user_from and not user_to:
|
||||
assert g.user.email == user_from
|
||||
user = self.create_user(code)
|
||||
|
@ -737,7 +738,7 @@ class TradeForm(NewActionForm):
|
|||
self.user_to = user
|
||||
return
|
||||
|
||||
# Creating supplier phantom account
|
||||
# Create supplier (from) phantom account
|
||||
if not user_from and user_to:
|
||||
assert g.user.email == user_to
|
||||
user = self.create_user(code)
|
||||
|
|
Reference in New Issue