noRentIfPaymentDenied and noPhantomResRent added
This commit is contained in:
parent
b494e177c2
commit
ad3a7231e5
@ -44,7 +44,7 @@ sig Car {
|
||||
abstract sig RMSS {
|
||||
id : one Int,
|
||||
startTime : one Int,
|
||||
endTime : lone Int,
|
||||
endTime : one Int,
|
||||
cost : one Float,
|
||||
status : one RequestStatus,
|
||||
paymentStatus : one PaymentStatus,
|
||||
@ -194,7 +194,19 @@ fact noDuplicatedUser {
|
||||
(no u1 , u2 : User | u1.drivingLicence = u2.drivingLicence and u1 != u2)
|
||||
}
|
||||
|
||||
// A reservation and its associated rent have the same user
|
||||
fact noPhantomResRent {
|
||||
(all c : Car | c.status = INUSE implies
|
||||
(no res : Reservation, ren : Rent | res.car = c and ren.car = c and res.user != ren.user)
|
||||
)
|
||||
}
|
||||
|
||||
// No rent is possible if the reservation payment was denied
|
||||
fact noRentIfPaymentDenied {
|
||||
(all c : Car, res : Reservation| c.status = INUSE and res.car = c and res.paymentStatus = DENIED implies
|
||||
(no ren : Rent | ren.car = c)
|
||||
)
|
||||
}
|
||||
|
||||
// No Users with NOTCONFIRMED Billing Information
|
||||
fact noUserWithNotConfirmedBilling {
|
||||
|
Loading…
Reference in New Issue
Block a user