def delivery_not_received(self): return list( sps_with_latest_status( sps=self.dg.delivering(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.DELIVERY_FACILITY, status_value=SupplyPointStatusValues.NOT_RECEIVED))
def not_submitted(self): return list( sps_with_latest_status( sps=self.dg.submitting(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.R_AND_R_FACILITY, status_value=SupplyPointStatusValues.NOT_SUBMITTED))
def submit_reminder_sent(self): return list( sps_with_latest_status( sps=self.dg.submitting(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.R_AND_R_FACILITY, status_value=SupplyPointStatusValues.REMINDER_SENT))
def delivery_reminder_sent(self): return list( sps_with_latest_status( sps=self.dg.delivering(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.DELIVERY_FACILITY, status_value=SupplyPointStatusValues.REMINDER_SENT))
def soh_submitted(self): return list( sps_with_latest_status( sps=self.facilities, year=self.year, month=self.month, status_type=SupplyPointStatusTypes.SOH_FACILITY, status_value=SupplyPointStatusValues.SUBMITTED))
def delivery_reminder_sent(self): return list(sps_with_latest_status(sps=self.dg.delivering(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.DELIVERY_FACILITY, status_value=SupplyPointStatusValues.REMINDER_SENT))
def delivery_not_received(self): return list(sps_with_latest_status(sps=self.dg.delivering(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.DELIVERY_FACILITY, status_value=SupplyPointStatusValues.NOT_RECEIVED))
def submit_reminder_sent(self): return list(sps_with_latest_status(sps=self.dg.submitting(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.R_AND_R_FACILITY, status_value=SupplyPointStatusValues.REMINDER_SENT))
def not_submitted(self): return list(sps_with_latest_status(sps=self.dg.submitting(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.R_AND_R_FACILITY, status_value=SupplyPointStatusValues.NOT_SUBMITTED))
def soh_submitted(self): return list(sps_with_latest_status(sps=self.facilities, year=self.year, month=self.month, status_type=SupplyPointStatusTypes.SOH_FACILITY, status_value=SupplyPointStatusValues.SUBMITTED))