mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
FEAT[BE] :update movement number format in GenerateMovementNumber method to include hyphen
This commit is contained in:
+2
-2
@@ -49,8 +49,8 @@ func (r *TransferLayingRepositoryImpl) GenerateMovementNumber(ctx context.Contex
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
// Format: TL00001, TL00002, dst
|
||||
movementNumber := fmt.Sprintf("TL%05d", seq)
|
||||
|
||||
movementNumber := fmt.Sprintf("TL-%05d", seq)
|
||||
return movementNumber, nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user