stockLost property

num get stockLost

Implementation

num get stockLost => _getQuantityCount(
      stockModels.where((e) =>
          e.transactionType == TransactionType.dispatched.toValue() &&
          (e.transactionReason == TransactionReason.lostInTransit.toValue() ||
              e.transactionReason ==
                  TransactionReason.lostInStorage.toValue())),
    );