Spaces:
GIZ
/
Running on CPU Upgrade

ppsingh commited on
Commit
3eaba6e
·
1 Parent(s): 054da8d
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. app.py +279 -665
  2. auditqa/__init__.py +0 -1
  3. auditqa/__pycache__/__init__.cpython-310.pyc +0 -0
  4. auditqa/__pycache__/process_chunks.cpython-310.pyc +0 -0
  5. auditqa/__pycache__/reader.cpython-310.pyc +0 -0
  6. auditqa/__pycache__/reports.cpython-310.pyc +0 -0
  7. auditqa/__pycache__/retriever.cpython-310.pyc +0 -0
  8. auditqa/__pycache__/sample_questions.cpython-310.pyc +0 -0
  9. auditqa/__pycache__/utils.cpython-310.pyc +0 -0
  10. auditqa/doc_process.py +0 -115
  11. auditqa/process_chunks.py +0 -158
  12. auditqa/reader.py +0 -80
  13. auditqa/reports.py +0 -451
  14. auditqa/retriever.py +0 -56
  15. auditqa/sample_questions.py +0 -59
  16. auditqa/utils.py +0 -190
  17. reports/Annual Consolidated OAG audit reports 2018/Annual Consolidated OAG audit reports 2018.chunks.json +0 -0
  18. reports/Annual Consolidated OAG audit reports 2018/Annual Consolidated OAG audit reports 2018.md +0 -0
  19. reports/Annual Consolidated OAG audit reports 2018/Annual Consolidated OAG audit reports 2018.pdf +0 -3
  20. reports/Annual Consolidated OAG audit reports 2018/Annual Consolidated OAG audit reports 2018.txt +0 -0
  21. reports/Annual Consolidated OAG audit reports 2019/Annual Consolidated OAG audit reports 2019.chunks.json +0 -0
  22. reports/Annual Consolidated OAG audit reports 2019/Annual Consolidated OAG audit reports 2019.md +0 -0
  23. reports/Annual Consolidated OAG audit reports 2019/Annual Consolidated OAG audit reports 2019.pdf +0 -3
  24. reports/Annual Consolidated OAG audit reports 2019/Annual Consolidated OAG audit reports 2019.txt +0 -0
  25. reports/Annual Consolidated OAG audit reports 2020/Annual Consolidated OAG audit reports 2020.chunks.json +0 -0
  26. reports/Annual Consolidated OAG audit reports 2020/Annual Consolidated OAG audit reports 2020.md +0 -0
  27. reports/Annual Consolidated OAG audit reports 2020/Annual Consolidated OAG audit reports 2020.pdf +0 -3
  28. reports/Annual Consolidated OAG audit reports 2020/Annual Consolidated OAG audit reports 2020.txt +0 -0
  29. reports/Annual Consolidated OAG audit reports 2021/Annual Consolidated OAG audit reports 2021.chunks.json +0 -0
  30. reports/Annual Consolidated OAG audit reports 2021/Annual Consolidated OAG audit reports 2021.md +0 -0
  31. reports/Annual Consolidated OAG audit reports 2021/Annual Consolidated OAG audit reports 2021.pdf +0 -3
  32. reports/Annual Consolidated OAG audit reports 2021/Annual Consolidated OAG audit reports 2021.txt +0 -0
  33. reports/Annual Consolidated OAG audit reports 2022/Annual Consolidated OAG audit reports 2022.chunks.json +0 -0
  34. reports/Annual Consolidated OAG audit reports 2022/Annual Consolidated OAG audit reports 2022.md +0 -0
  35. reports/Annual Consolidated OAG audit reports 2022/Annual Consolidated OAG audit reports 2022.pdf +0 -3
  36. reports/Annual Consolidated OAG audit reports 2022/Annual Consolidated OAG audit reports 2022.txt +0 -0
  37. reports/Gulu DLG Report of Auditor General 2018/Gulu DLG Report of Auditor General 2018.chunks.json +0 -0
  38. reports/Gulu DLG Report of Auditor General 2018/Gulu DLG Report of Auditor General 2018.md +0 -860
  39. reports/Gulu DLG Report of Auditor General 2018/Gulu DLG Report of Auditor General 2018.pdf +0 -3
  40. reports/Gulu DLG Report of Auditor General 2018/Gulu DLG Report of Auditor General 2018.txt +0 -1163
  41. reports/Gulu DLG Report of Auditor General 2019/Gulu DLG Report of Auditor General 2019.chunks.json +0 -0
  42. reports/Gulu DLG Report of Auditor General 2019/Gulu DLG Report of Auditor General 2019.md +0 -850
  43. reports/Gulu DLG Report of Auditor General 2019/Gulu DLG Report of Auditor General 2019.pdf +0 -3
  44. reports/Gulu DLG Report of Auditor General 2019/Gulu DLG Report of Auditor General 2019.txt +0 -1111
  45. reports/Gulu DLG Report of Auditor General 2020/Gulu DLG Report of Auditor General 2020.chunks.json +0 -0
  46. reports/Gulu DLG Report of Auditor General 2020/Gulu DLG Report of Auditor General 2020.md +0 -1170
  47. reports/Gulu DLG Report of Auditor General 2020/Gulu DLG Report of Auditor General 2020.pdf +0 -3
  48. reports/Gulu DLG Report of Auditor General 2020/Gulu DLG Report of Auditor General 2020.txt +0 -1496
  49. reports/Gulu DLG Report of Auditor General 2021/Gulu DLG Report of Auditor General 2021.chunks.json +0 -0
  50. reports/Gulu DLG Report of Auditor General 2021/Gulu DLG Report of Auditor General 2021.md +0 -878
app.py CHANGED
@@ -1,750 +1,364 @@
1
  import gradio as gr
2
- import pandas as pd
3
- import logging
4
- import asyncio
5
- import os
6
  import time
7
  from uuid import uuid4
8
- from datetime import datetime, timedelta
9
- from pathlib import Path
10
- from huggingface_hub import CommitScheduler, HfApi
11
- from auditqa.sample_questions import QUESTIONS
12
- from auditqa.reports import files, report_list, new_files, new_report_list
13
- from auditqa.process_chunks import load_chunks, getconfig, get_local_qdrant
14
- from auditqa.retriever import get_context
15
- from auditqa.reader import nvidia_client, dedicated_endpoint, serverless_api, inf_provider
16
- from auditqa.utils import make_html_source, parse_output_llm_with_sources, save_logs, get_message_template, get_client_location, get_client_ip, get_platform_info
17
- from dotenv import load_dotenv
18
- load_dotenv()
19
- from threading import Lock
20
- from gradio.routes import Request
21
- import json
22
- #import platform
23
- #print(platform.python_version())
24
 
25
- # fetch tokens and model config params
26
- SPACES_LOG = os.environ["SPACES_LOG"]
27
- #audit_space = os.environ["audit_space"]
28
- model_config = getconfig("model_params.cfg")
29
-
30
- # create the local logs repo
31
- JSON_DATASET_DIR = Path("json_dataset")
32
- JSON_DATASET_DIR.mkdir(parents=True, exist_ok=True)
33
- JSON_DATASET_PATH = JSON_DATASET_DIR / f"logs-{uuid4()}.json"
34
-
35
- # the logs are written to dataset repo periodically from local logs
36
- # https://huggingface.co/spaces/Wauplin/space_to_dataset_saver
37
- scheduler = CommitScheduler(
38
- repo_id="GIZ/spaces_logs",
39
- repo_type="dataset",
40
- folder_path=JSON_DATASET_DIR,
41
- path_in_repo="eudr_chatbot", # Changed for EUDR
42
- token=SPACES_LOG )
43
-
44
- #####--------------- VECTOR STORE -------------------------------------------------
45
- # reports contain the already created chunks from Markdown version of pdf reports
46
- # document processing was done using : https://github.com/axa-group/Parsr
47
- # We need to create the local vectorstore collection once using load_chunks
48
- # vectorestore colection are stored on persistent storage so this needs to be run only once
49
- # hence, comment out line below when creating for first time
50
- #vectorstores = load_chunks()
51
- # once the vectore embeddings are created we will use qdrant client to access these
52
- #try:
53
- vectorstores = get_local_qdrant()
54
- #except Exception as e:
55
- # api = HfApi()
56
- # api.restart_space(repo_id = "GIZ/eudr_assistant", token=audit_space) # Changed for EUDR
57
-
58
- #####---------------------CHAT-----------------------------------------------------
59
- def start_chat(query,history):
60
- history = history + [(query,None)]
61
- history = [tuple(x) for x in history]
62
- return (gr.update(interactive = False),gr.update(selected=1),history)
63
-
64
- def finish_chat():
65
- return (gr.update(interactive = True,value = ""))
66
-
67
- def submit_feedback(feedback, logs_data):
68
- """Handle feedback submission"""
69
- try:
70
- if logs_data is None:
71
- return gr.update(visible=False), gr.update(visible=True)
72
-
73
- session_id = logs_data.get("session_id")
74
- if session_id:
75
- # Update session last_activity to now
76
- session_manager.update_session(session_id)
77
- # Compute duration from the session manager and update the log.
78
- logs_data["session_duration_seconds"] = session_manager.get_session_duration(session_id)
79
-
80
- # Now save the (feedback) log record
81
- save_logs(scheduler, JSON_DATASET_PATH, logs_data, feedback)
82
- return gr.update(visible=False), gr.update(visible=True)
83
- except Exception as e:
84
- return gr.update(visible=False), gr.update(visible=True)
85
 
86
  def handle_geojson_upload(file):
87
  """Handle GeoJSON file upload"""
88
  if file is not None:
89
- return "✅ Document submitted successfully! You can now ask questions about this GeoJSON file."
90
- else:
91
- return "❌ Please select a GeoJSON file to upload."
92
-
93
- # Session Manager added (track session duration, location, and platform)
94
- class SessionManager:
95
- def __init__(self):
96
- self.sessions = {}
97
-
98
- def create_session(self, client_ip, user_agent):
99
- session_id = str(uuid4())
100
- self.sessions[session_id] = {
101
- 'start_time': datetime.now(),
102
- 'last_activity': datetime.now(),
103
- 'client_ip': client_ip,
104
- 'location_info': get_client_location(client_ip),
105
- 'platform_info': get_platform_info(user_agent)
106
- }
107
- return session_id
108
-
109
- def update_session(self, session_id):
110
- if session_id in self.sessions:
111
- self.sessions[session_id]['last_activity'] = datetime.now()
112
-
113
- def get_session_duration(self, session_id):
114
- if session_id in self.sessions:
115
- start = self.sessions[session_id]['start_time']
116
- last = self.sessions[session_id]['last_activity']
117
- return (last - start).total_seconds()
118
- return 0
119
-
120
- def get_session_data(self, session_id):
121
- return self.sessions.get(session_id)
122
-
123
- # Initialize session manager
124
- session_manager = SessionManager()
125
-
126
- async def chat(query, history, method, country, uploaded_file, client_ip=None, session_id=None, request:gr.Request = None):
127
- """taking a query and a message history, use a pipeline (reformulation, retriever, answering)
128
- to yield a tuple of:(messages in gradio format/messages in langchain format, source documents)
129
- """
130
-
131
- if not session_id:
132
- user_agent = request.headers.get('User-Agent','') if request else ''
133
- session_id = session_manager.create_session(client_ip, user_agent)
134
  else:
135
- session_manager.update_session(session_id)
136
 
137
- # Get session id
138
- session_data = session_manager.get_session_data(session_id)
139
- session_duration = session_manager.get_session_duration(session_id)
 
140
 
141
- print(f">> NEW QUESTION : {query}")
142
- print(f"history:{history}")
143
- print(f"method:{method}")
144
- print(f"country:{country}")
145
- print(f"uploaded_file:{uploaded_file}")
146
 
147
- docs_html = ""
148
- output_query = ""
149
 
150
- # Handle different methods
151
  if method == "Upload GeoJSON":
152
  if uploaded_file is None:
153
  warning_message = "⚠️ **No GeoJSON file uploaded.** Please upload a GeoJSON file first."
154
  history[-1] = (query, warning_message)
155
- # Update logs with the warning instead of answer
156
- logs_data = {
157
- "record_id": str(uuid4()),
158
- "session_id": session_id,
159
- "session_duration_seconds": session_duration,
160
- "client_location": session_data['location_info'],
161
- "platform": session_data['platform_info'],
162
- "question": query,
163
- "method": method,
164
- "uploaded_file": str(uploaded_file) if uploaded_file else None,
165
- "retriever": model_config.get('retriever','MODEL'),
166
- "endpoint_type": model_config.get('reader','TYPE'),
167
- "reader": model_config.get('reader','NVIDIA_MODEL'),
168
- "answer": warning_message,
169
- "no_results": True # Flag to indicate no results were found
170
- }
171
- yield [tuple(x) for x in history], "", logs_data, session_id
172
- # Save log for the warning response
173
- save_logs(scheduler, JSON_DATASET_PATH, logs_data)
174
  return
175
  else: # "Talk to Reports"
176
  if not country:
177
  warning_message = "⚠️ **No country selected.** Please select a country to analyze reports."
178
  history[-1] = (query, warning_message)
179
- # Update logs with the warning instead of answer
180
- logs_data = {
181
- "record_id": str(uuid4()),
182
- "session_id": session_id,
183
- "session_duration_seconds": session_duration,
184
- "client_location": session_data['location_info'],
185
- "platform": session_data['platform_info'],
186
- "question": query,
187
- "method": method,
188
- "country": country,
189
- "retriever": model_config.get('retriever','MODEL'),
190
- "endpoint_type": model_config.get('reader','TYPE'),
191
- "reader": model_config.get('reader','NVIDIA_MODEL'),
192
- "answer": warning_message,
193
- "no_results": True # Flag to indicate no results were found
194
- }
195
- yield [tuple(x) for x in history], "", logs_data, session_id
196
- # Save log for the warning response
197
- save_logs(scheduler, JSON_DATASET_PATH, logs_data)
198
  return
199
-
200
- ##------------------------fetch collection from vectorstore------------------------------
201
- vectorstore = vectorstores["docling"]
202
-
203
- ##------------------------------get context----------------------------------------------
204
-
205
- ### adding for assessing computation time
206
- start_time = time.time()
207
 
208
- # Modified context retrieval for EUDR use case
 
209
  if method == "Upload GeoJSON":
210
- # For GeoJSON, use the uploaded file as context
211
- # This is a placeholder - you'll need to implement GeoJSON processing
212
- context_retrieved = [] # Implement GeoJSON processing here
213
- else: # "Talk to Reports"
214
- # For reports, filter by country
215
- context_retrieved = get_context(vectorstore=vectorstore, query=query,
216
- country=country) # Modified to use country instead of reports/sources
217
-
218
- end_time = time.time()
219
- print("Time for retriever:",end_time - start_time)
220
-
221
- if not context_retrieved or len(context_retrieved) == 0:
222
- if method == "Upload GeoJSON":
223
- warning_message = "⚠️ **No relevant information found in the uploaded GeoJSON file.** Please try rephrasing your question or check your file."
224
- else:
225
- warning_message = f"⚠️ **No relevant information found for {country}.** Please try rephrasing your question or selecting a different country."
226
-
227
- history[-1] = (query, warning_message)
228
- # Update logs with the warning instead of answer
229
- logs_data = {
230
- "record_id": str(uuid4()),
231
- "session_id": session_id,
232
- "session_duration_seconds": session_duration,
233
- "client_location": session_data['location_info'],
234
- "platform": session_data['platform_info'],
235
- "question": query,
236
- "method": method,
237
- "country": country if method == "Talk to Reports" else None,
238
- "uploaded_file": str(uploaded_file) if method == "Upload GeoJSON" else None,
239
- "retriever": model_config.get('retriever','MODEL'),
240
- "endpoint_type": model_config.get('reader','TYPE'),
241
- "reader": model_config.get('reader','NVIDIA_MODEL'),
242
- "answer": warning_message,
243
- "no_results": True # Flag to indicate no results were found
244
- }
245
- yield [tuple(x) for x in history], "", logs_data, session_id
246
- # Save log for the warning response
247
- save_logs(scheduler, JSON_DATASET_PATH, logs_data)
248
- return
249
-
250
- context_retrieved_formatted = "||".join(doc.page_content for doc in context_retrieved)
251
- context_retrieved_lst = [doc.page_content for doc in context_retrieved]
252
-
253
- ##------------------- -------------Define Prompt-------------------------------------------
254
- SYSTEM_PROMPT = """
255
- You are EUDR Q&A, an AI Assistant for EU Deforestation Regulation analysis. \
256
- You are given a question and extracted passages related to EUDR compliance and deforestation data.\
257
- Provide a clear and structured answer based on the passages/context provided and the guidelines.
258
- Guidelines:
259
- - Passages are provided as comma separated list of strings
260
- - If the passages have useful facts or numbers, use them in your answer.
261
- - When you use information from a passage, mention where it came from by using [Doc i] at the end of the sentence. i stands for the number of the document.
262
- - Do not use the sentence 'Doc i says ...' to say where information came from.
263
- - If the same thing is said in more than one document, you can mention all of them like this: [Doc i, Doc j, Doc k]
264
- - Do not just summarize each passage one by one. Group your summaries to highlight the key parts in the explanation.
265
- - If it makes sense, use bullet points and lists to make your answers easier to understand.
266
- - You do not need to use every passage. Only use the ones that help answer the question.
267
- - If the documents do not have the information needed to answer the question, just say you do not have enough information.
268
- """
269
-
270
- USER_PROMPT = """Passages:
271
- {context}
272
- -----------------------
273
- Question: {question} - Explained for EUDR compliance expert
274
- Answer in english with the passages citations:
275
- """.format(context = context_retrieved_lst, question=query)
276
-
277
- ##-------------------- apply message template ------------------------------
278
- messages = get_message_template(model_config.get('reader','TYPE'),SYSTEM_PROMPT,USER_PROMPT)
279
-
280
- ## -----------------Prepare HTML for displaying source documents --------------
281
- docs_html = []
282
- for i, d in enumerate(context_retrieved, 1):
283
- docs_html.append(make_html_source(d, i))
284
- docs_html = "".join(docs_html)
285
-
286
- ##-----------------------get answer from endpoints------------------------------
287
- answer_yet = ""
288
-
289
- logs_data = {
290
- "record_id": str(uuid4()), # Add unique record ID
291
- "session_id": session_id,
292
- "session_duration_seconds": session_duration,
293
- "client_location": session_data['location_info'],
294
- "platform": session_data['platform_info'],
295
- "system_prompt": SYSTEM_PROMPT,
296
- "method": method,
297
- "country": country if method == "Talk to Reports" else None,
298
- "uploaded_file": str(uploaded_file) if method == "Upload GeoJSON" else None,
299
- "question": query,
300
- "retriever": model_config.get('retriever','MODEL'),
301
- "endpoint_type": model_config.get('reader','TYPE'),
302
- "reader": model_config.get('reader','NVIDIA_MODEL'),
303
- "docs": [doc.page_content for doc in context_retrieved],
304
- }
305
-
306
- # Keep the same endpoint logic as the original...
307
- if model_config.get('reader','TYPE') == 'NVIDIA':
308
- chat_model = nvidia_client()
309
- async def process_stream():
310
- nonlocal answer_yet # Use the outer scope's answer_yet variable
311
- response = chat_model.chat_completion(
312
- model=model_config.get("reader","NVIDIA_MODEL"),
313
- messages=messages,
314
- stream=True,
315
- max_tokens=int(model_config.get('reader','MAX_TOKENS')),
316
- )
317
- for message in response:
318
- token = message.choices[0].delta.content
319
- if token:
320
- answer_yet += token
321
- parsed_answer = parse_output_llm_with_sources(answer_yet)
322
- history[-1] = (query, parsed_answer)
323
- logs_data["answer"] = parsed_answer
324
- yield [tuple(x) for x in history], docs_html, logs_data, session_id
325
-
326
- # Stream the response updates
327
- async for update in process_stream():
328
- yield update
329
-
330
- elif model_config.get('reader','TYPE') == 'INF_PROVIDERS':
331
- chat_model = inf_provider()
332
- start_time = time.time()
333
- ai_prefix = "**AI-Generated Response:**\n\n"
334
- async def process_stream():
335
- nonlocal answer_yet
336
- answer_yet += ai_prefix
337
- response = chat_model.chat.completions.create(
338
- model=model_config.get("reader","INF_PROVIDER_MODEL"),
339
- messages = messages,
340
- stream= True,
341
- max_tokens=int(model_config.get('reader','MAX_TOKENS')),
342
- )
343
- for message in response:
344
- token = message.choices[0].delta.content
345
- if token:
346
- answer_yet += token
347
- parsed_answer = parse_output_llm_with_sources(answer_yet)
348
- history[-1] = (query, parsed_answer)
349
- logs_data["answer"] = parsed_answer
350
- yield [tuple(x) for x in history], docs_html, logs_data, session_id
351
- await asyncio.sleep(0.05)
352
-
353
- # Stream the response updates
354
- async for update in process_stream():
355
- yield update
356
-
357
-
358
- elif model_config.get('reader','TYPE') == 'DEDICATED':
359
- chat_model = dedicated_endpoint()
360
- ### adding for assessing computation time
361
- start_time = time.time()
362
- async def process_stream():
363
- nonlocal answer_yet # Use the outer scope's answer_yet variable
364
- # Iterate over the streaming response chunks
365
- async for chunk in chat_model.astream(messages):
366
- token = chunk.content
367
- answer_yet += token
368
- parsed_answer = parse_output_llm_with_sources(answer_yet)
369
- history[-1] = (query, parsed_answer)
370
- logs_data["answer"] = parsed_answer
371
- yield [tuple(x) for x in history], docs_html, logs_data, session_id
372
- end_time = time.time()
373
- print("Time for reader:",end_time - start_time)
374
-
375
- # Stream the response updates
376
- async for update in process_stream():
377
- yield update
378
-
379
-
380
  else:
381
- chat_model = serverless_api() # TESTING: ADAPTED FOR HF INFERENCE API (needs to be reverted for production version)
382
- async def process_stream():
383
- nonlocal answer_yet
384
- try:
385
- formatted_messages = [
386
- {
387
- "role": msg.type if hasattr(msg, 'type') else msg.role,
388
- "content": msg.content
389
- }
390
- for msg in messages
391
- ]
392
-
393
- response = chat_model.chat_completion(
394
- messages=formatted_messages,
395
- max_tokens= int(model_config.get('reader', 'MAX_TOKENS'))
396
- )
397
-
398
- response_text = response.choices[0].message.content
399
- words = response_text.split()
400
- for word in words:
401
- answer_yet += word + " "
402
- parsed_answer = parse_output_llm_with_sources(answer_yet)
403
- history[-1] = (query, parsed_answer)
404
- # Update logs_data with current answer (and get a new timestamp)
405
- logs_data["answer"] = parsed_answer
406
- yield [tuple(x) for x in history], docs_html, logs_data, session_id
407
- await asyncio.sleep(0.05)
408
-
409
- except Exception as e:
410
- raise
411
-
412
- async for update in process_stream():
413
- yield update
414
 
415
-
416
- # logging the event
417
- try:
418
- save_logs(scheduler,JSON_DATASET_PATH,logs_data)
419
- except Exception as e:
420
- raise
421
-
422
-
423
- #####-------------------------- Gradio App--------------------------------------####
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424
 
425
  # Set up Gradio Theme
426
  theme = gr.themes.Base(
427
- primary_hue="blue",
428
- secondary_hue="red",
429
  font=[gr.themes.GoogleFont("Poppins"), "ui-sans-serif", "system-ui", "sans-serif"],
430
- text_size = gr.themes.utils.sizes.text_sm,
431
  )
432
 
433
- init_prompt = """
434
  Hello, I am EUDR Q&A, an AI-powered conversational assistant designed to help you understand EU Deforestation Regulation compliance and analysis. I will answer your questions by using **EUDR reports and uploaded GeoJSON files**.
435
- 💡 How to use (tabs on right)
436
- - **Data Sources**: You can choose to either upload a GeoJSON file for analysis or talk to EUDR reports filtered by country.
437
- - **Examples**: We have curated some example questions, select a particular question from category of questions.
438
- - **Sources**: This tab will display the relied upon content from the reports or uploaded files, to help you in assessing or fact checking if the answer provided by EUDR Q&A assistant is correct or not.
439
- ⚠️ For limitations of the tool and collection of usage statistics and data please check **Disclaimer** tab.
440
- ⚠️ By using this app, you acknowledge that we collect usage statistics (such as question asked, feedback given, session duration, device type and anonymized geo-location) to understand performance and continuously improve the tool, based on our legitimate interest in enhancing our services.
441
- """
442
 
 
 
 
 
443
 
444
- with gr.Blocks(title="EUDR Q&A", css= "style.css", theme=theme,elem_id = "main-component") as demo:
445
- #----------------------------------------------------------------------------------------------
446
- # main tab where chat interaction happens
447
- # ---------------------------------------------------------------------------------------------
 
 
448
  with gr.Tab("EUDR Q&A"):
449
-
450
- with gr.Row(elem_id="chatbot-row"):
451
- # chatbot output screen
452
  with gr.Column(scale=2):
453
  chatbot = gr.Chatbot(
454
- value=[(None,init_prompt)],
455
- show_copy_button=True,show_label = False,elem_id="chatbot",layout = "panel",
456
- avatar_images = (None,"data-collection.png"),
 
 
 
457
  )
458
-
459
- # feedback UI
460
- with gr.Column(elem_id="feedback-container"):
461
  with gr.Row(visible=False) as feedback_row:
462
  gr.Markdown("Was this response helpful?")
463
  with gr.Row():
464
- okay_btn = gr.Button("👍 Okay", elem_classes="feedback-button")
465
- not_okay_btn = gr.Button("👎 Not to expectations", elem_classes="feedback-button")
466
  feedback_thanks = gr.Markdown("Thanks for the feedback!", visible=False)
467
- feedback_state = gr.State()
468
-
469
- with gr.Row(elem_id = "input-message"):
470
- textbox=gr.Textbox(placeholder="Ask me anything here!",show_label=False,scale=7,
471
- lines = 1,interactive = True,elem_id="input-textbox")
472
-
473
- # second column with playground area for user to select values
474
- with gr.Column(scale=1, variant="panel",elem_id = "right-panel"):
475
- # creating tabs on right panel
 
 
 
 
476
  with gr.Tabs() as tabs:
477
- #---------------- tab for DATA SOURCES SELECTION ----------------------
478
-
479
- with gr.Tab("Data Sources",elem_id = "tab-config",id = 2):
480
-
481
- #---------------- SELECTION METHOD - RADIO BUTTON ------------
482
  search_method = gr.Radio(
483
  choices=["Upload GeoJSON", "Talk to Reports"],
484
  label="Choose data source",
485
- info= "Upload a GeoJSON file for analysis or select country-specific EUDR reports",
486
  value="Upload GeoJSON",
487
  )
488
-
489
- #---------------- UPLOAD GEOJSON SECTION ------------
490
  with gr.Group(visible=True) as geojson_section:
491
  uploaded_file = gr.File(
492
  label="Upload GeoJSON File",
493
  file_types=[".geojson", ".json"],
494
  file_count="single"
495
  )
496
-
497
- upload_status = gr.Markdown("", visible=False)
498
-
499
  submit_file_btn = gr.Button("Submit GeoJSON", variant="primary")
500
-
501
- #---------------- TALK TO REPORTS SECTION ------------
 
502
  with gr.Group(visible=False) as reports_section:
503
- #----- Country filter ----------
504
  dropdown_country = gr.Dropdown(
505
  ["Ecuador", "Guatemala"],
506
  label="Select Country",
507
  value=None,
508
  interactive=True,
509
  )
510
-
511
- # Toggle visibility based on search method
512
- def toggle_search_method(method):
513
- """Toggle between GeoJSON upload and country selection"""
514
- if method == "Upload GeoJSON":
515
- return (
516
- gr.update(visible=True), # geojson_section
517
- gr.update(visible=False), # reports_section
518
- gr.update(value=None), # dropdown_country
519
- gr.update(value=None) # uploaded_file
520
- )
521
- else: # "Talk to Reports"
522
- return (
523
- gr.update(visible=False), # geojson_section
524
- gr.update(visible=True), # reports_section
525
- gr.update(), # dropdown_country
526
- gr.update(value=None) # uploaded_file
527
- )
528
-
529
- # Pass to the event handler
530
- search_method.change(
531
- fn=toggle_search_method,
532
- inputs=[search_method],
533
- outputs=[
534
- geojson_section,
535
- reports_section,
536
- dropdown_country,
537
- uploaded_file
538
- ]
539
- )
540
-
541
- # Handle file upload submission
542
- submit_file_btn.click(
543
- fn=handle_geojson_upload,
544
- inputs=[uploaded_file],
545
- outputs=[upload_status]
546
- ).then(
547
- lambda: gr.update(visible=True),
548
- outputs=[upload_status]
549
- )
550
 
551
-
552
- ############### tab for Question selection ###############
553
- with gr.TabItem("Examples",elem_id = "tab-examples",id = 0):
554
- examples_hidden = gr.Textbox(visible = False)
555
-
556
- # getting defualt key value to display
557
- first_key = list(QUESTIONS.keys())[0]
558
- # create the question category dropdown
559
- dropdown_samples = gr.Dropdown(QUESTIONS.keys(),value = first_key,
560
- interactive = True,show_label = True,
561
- label = "Select a category of sample questions",
562
- elem_id = "dropdown-samples")
563
 
 
 
 
 
 
 
 
 
564
 
565
- # iterate through the questions list
566
- samples = []
567
- for i,key in enumerate(QUESTIONS.keys()):
568
  examples_visible = True if i == 0 else False
569
- with gr.Row(visible = examples_visible) as group_examples:
570
- examples_questions = gr.Examples(
571
- QUESTIONS[key],
572
  [examples_hidden],
573
  examples_per_page=8,
574
  run_on_click=False,
575
- elem_id=f"examples{i}",
576
- api_name=f"examples{i}",
577
  )
578
-
579
- samples.append(group_examples)
580
- ##------------------- tab for Sources reporting ##------------------
581
- with gr.Tab("Sources",elem_id = "tab-citations",id = 1):
582
- sources_textbox = gr.HTML(show_label=False, elem_id="sources-textbox")
583
- docs_textbox = gr.State("")
584
-
585
- def change_sample_questions(key):
586
- # update the questions list based on key selected
587
- index = list(QUESTIONS.keys()).index(key)
588
- visible_bools = [False] * len(samples)
589
- visible_bools[index] = True
590
- return [gr.update(visible=visible_bools[i]) for i in range(len(samples))]
591
-
592
- dropdown_samples.change(change_sample_questions,dropdown_samples,samples)
593
-
594
-
595
- # ---- Guidelines Tab ----
596
- with gr.Tab("Guidelines", elem_classes="max-height other-tabs"):
597
  gr.Markdown("""
598
- #### Welcome to EUDR Q&A, your AI-powered assistant for exploring and understanding EU Deforestation Regulation compliance. This tool leverages advanced language models to help you get clear and structured answers based on EUDR data and reports. To get you started, here are a few tips on how to use the tool:
599
- ## 💬 Crafting Effective Prompts
600
- Clear, specific questions will give you the best results. Here are some examples:
 
 
 
601
  | ❌ Less Effective | ✅ More Effective |
602
  |------------------|-------------------|
603
- | "What is deforestation?" | "What are the main deforestation hotspots identified in Ecuador's latest assessment?" |
604
- | "Tell me about compliance" | "What specific EUDR compliance requirements apply to coffee imports from Guatemala?" |
605
- | "Show me data" | "What is the deforestation rate trend in the selected region between 2020-2023?" |
 
 
 
 
 
 
606
  ## ⭐ Best Practices
607
- - **Be Clear and Specific**: Frame your questions clearly and focus on what you want to learn.
608
- - **One Topic at a Time**: Break complex queries into simpler, focused questions.
609
- - **Provide Context**: Mentioning specific regions, commodities, or time periods helps narrow the focus.
610
- - **Follow Up**: Ask follow-up questions to explore a topic more deeply.
611
 
612
- ## 🔍 Utilizing Data Sources
613
- - **GeoJSON Upload**: Upload your GeoJSON files containing geographic data for specific analysis of deforestation patterns in your area of interest.
614
- - **Country Reports**: Select from Ecuador or Guatemala to access country-specific EUDR compliance reports and analysis.
615
- ## 📚 Useful Resources
616
-
617
- - <ins>[**EU Deforestation Regulation Official Guide**](https://environment.ec.europa.eu/topics/forests/deforestation_en)</ins>
618
- - <ins>[**EUDR Implementation Timeline**](https://ec.europa.eu/environment/forests/deforestation.htm)</ins>
619
- - <ins>[**Commodity-Specific Guidelines**](https://ec.europa.eu/info/food-farming-fisheries/key-policies/common-agricultural-policy/market-measures/agri-food-chain_en)</ins>
620
- Enjoy using EUDR Q&A and happy analyzing!
621
- """)
622
-
623
 
624
-
625
- # static tab 'about us'
626
- with gr.Tab("About",elem_classes = "max-height other-tabs"):
627
- with gr.Row():
628
- with gr.Column(scale=1):
629
- gr.Markdown("""The <ins>[**EU Deforestation Regulation (EUDR)**](https://environment.ec.europa.eu/topics/forests/deforestation_en)</ins> \
630
- represents a landmark piece of legislation aimed at minimizing the EU's contribution to global deforestation \
631
- and forest degradation. The regulation requires companies to ensure that specific commodities placed on the EU market \
632
- are deforestation-free and legally produced.
633
-
634
- However, understanding and implementing EUDR compliance can be complex, involving detailed geographic data analysis, \
635
- supply chain tracking, and regulatory interpretation. The current format of compliance reports and geographic data \
636
- can be challenging for stakeholders to navigate effectively, potentially hindering proper implementation \
637
- and compliance monitoring.
638
-
639
- In response to this challenge, modern advancements in Artificial Intelligence (AI), \
640
- particularly Retrieval Augmented Generation (RAG) technology and geographic data processing, \
641
- emerge as promising solutions. By harnessing the capabilities of such AI tools, \
642
- there is an opportunity to improve the accessibility and understanding \
643
- of EUDR requirements and geographic risk assessments, ensuring that compliance insights are effectively \
644
- translated into actionable outcomes for businesses and regulators.
645
-
646
- To address these implementation challenges, the **GIZ** has initiated this prototype project \
647
- to enhance how EUDR compliance data and geographic information are processed and understood. \
648
- This AI-powered tool aims to offer critical capabilities such as analyzing complex geographic data, \
649
- extracting compliance insights, and enabling interactive, user-friendly analysis through a chatbot interface.
650
-
651
- This prototype tool leveraging AI (Artificial Intelligence) aims at offering critical capabilities such as \
652
- summarizing complex compliance requirements, extracting geographic insights from GeoJSON data, \
653
- and enabling interactive, user-friendly analysis through a chatbot interface. By making EUDR compliance information more accessible, \
654
- this aims to increase understanding and proper implementation among stakeholders, \
655
- which can lead to better environmental outcomes and regulatory compliance.
656
-
657
- """)
658
-
659
-
660
- # static tab for disclaimer
661
- with gr.Tab("Disclaimer",elem_classes = "max-height other-tabs"):
662
- with gr.Row():
663
- with gr.Column(scale=1):
664
- gr.Markdown("""
665
- - This chatbot is intended for specific use of answering questions based on EUDR compliance reports and uploaded GeoJSON data. For any use beyond this scope we have no liability for responses provided by the chatbot.
666
- - The functionality and scope of this chatbot is limited to the context contained in EUDR reports and uploaded geographic data files.
667
- - We have implemented measures to ensure the technical robustness and security of our AI system, minimizing unexpected behaviour, however we do not guarantee the full reliability, or completeness of any information provided by the chatbot and disclaim any liability or responsibility for actions taken based on its responses.
668
- - The chatbot may occasionally provide inaccurate or inappropriate responses, and it is important to exercise judgment and critical thinking when interpreting its output, especially for compliance decisions.
669
- - The use of AI within this application is transparent. When interacting with the AI, users are informed that they are engaging with an AI system.
670
- - The chatbot responses should not be considered professional legal or compliance advice and are generated based on patterns in the data it has been trained on.
671
- - The chatbot's responses do not reflect the official positions or policies of the EU, our organization or its affiliates regarding EUDR implementation.
672
- - Any personal or sensitive information shared with the chatbot is at the user's own risk, and we cannot guarantee complete privacy or confidentiality.
673
- - Uploaded GeoJSON files are processed locally and temporarily for analysis purposes. We recommend not uploading sensitive or proprietary geographic data.
674
- - The chatbot is not deterministic, so there might be changes in answers to the same question when asked by different users or multiple times.
675
- - When you use this app, we collect certain information to understand its usage, analyze performance, and continuously improve the tool for future use. This includes:
676
- - The questions you ask
677
- - The AI-generated answers
678
- - Information about uploaded files (file names, not content)
679
- - Feedback given towards each response (in form of Thumbs-up and Thumbs-down), if any.
680
- - Usage statistics such as session duration, device type and anonymized geo-location information.
681
-
682
- We process this data based on our legitimate interest in continually enhancing the quality, security, and usability of the EUDR Q&A assistant
683
- - By using this chatbot, you agree to these terms and acknowledge that you are solely responsible for any reliance on or actions taken based on its responses.
684
- - User can read more about the technical information about the tool in [**Readme**](https://huggingface.co/spaces/GIZ/eudr_assistant/blob/main/README.md) of this tool.
685
- - **This is just a prototype and being tested and worked upon, so it's not perfect and may sometimes give irrelevant answers**. If you are not satisfied with the answer, please ask a more specific question or report your feedback to help us improve the system.
686
- """)
687
-
688
-
689
- def show_feedback(logs):
690
- """Show feedback buttons and store logs in state"""
691
- return gr.update(visible=True), gr.update(visible=False), logs
692
-
693
- def submit_feedback_okay(logs_data):
694
- """Handle 'okay' feedback submission"""
695
- return submit_feedback("okay", logs_data)
696
-
697
- def submit_feedback_not_okay(logs_data):
698
- """Handle 'not okay' feedback submission"""
699
- return submit_feedback("not_okay", logs_data)
700
-
701
- okay_btn.click(
702
- submit_feedback_okay,
703
- [feedback_state],
704
- [feedback_row, feedback_thanks]
705
  )
706
 
707
- not_okay_btn.click(
708
- submit_feedback_not_okay,
709
- [feedback_state],
710
- [feedback_row, feedback_thanks]
 
711
  )
712
-
713
- #-------------------- Session Management + Geolocation -------------------------
714
-
715
- # Add these state components at the top level of the Blocks
716
- session_id = gr.State(None)
717
- client_ip = gr.State(None)
718
 
719
- @demo.load(api_name="get_client_ip")
720
- def get_client_ip_handler(dummy_input="", request: gr.Request = None):
721
- """Handler for getting client IP in Gradio context"""
722
- return get_client_ip(request)
 
 
 
 
 
 
 
 
 
 
 
 
 
723
 
724
-
725
- #-------------------- Gradio voodoo -------------------------
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
726
 
727
- # Update the event handlers
728
- (textbox
729
- .submit(get_client_ip_handler, [textbox], [client_ip], api_name="get_ip_textbox")
730
- .then(start_chat, [textbox, chatbot], [textbox, tabs, chatbot], queue=False, api_name="start_chat_textbox")
731
- .then(chat,
732
- [textbox, chatbot, search_method, dropdown_country, uploaded_file, client_ip, session_id],
733
- [chatbot, sources_textbox, feedback_state, session_id],
734
- queue=True, concurrency_limit=8, api_name="chat_textbox")
735
- .then(show_feedback, [feedback_state], [feedback_row, feedback_thanks, feedback_state], api_name="show_feedback_textbox")
736
- .then(finish_chat, None, [textbox], api_name="finish_chat_textbox"))
737
-
738
- (examples_hidden
739
- .change(start_chat, [examples_hidden, chatbot], [textbox, tabs, chatbot], queue=False, api_name="start_chat_examples")
740
- .then(get_client_ip_handler, [examples_hidden], [client_ip], api_name="get_ip_examples")
741
- .then(chat,
742
- [examples_hidden, chatbot, search_method, dropdown_country, uploaded_file, client_ip, session_id],
743
- [chatbot, sources_textbox, feedback_state, session_id],
744
- concurrency_limit=8, api_name="chat_examples")
745
- .then(show_feedback, [feedback_state], [feedback_row, feedback_thanks, feedback_state], api_name="show_feedback_examples")
746
- .then(finish_chat, None, [textbox], api_name="finish_chat_examples"))
747
-
748
- demo.queue()
749
 
750
- demo.launch()
 
 
 
1
  import gradio as gr
 
 
 
 
2
  import time
3
  from uuid import uuid4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
+ # Sample questions for examples (you can customize these)
6
+ SAMPLE_QUESTIONS = {
7
+ "Deforestation Analysis": [
8
+ "What are the main deforestation hotspots in Ecuador?",
9
+ "Show me deforestation trends in the uploaded area",
10
+ "What commodities are driving deforestation in Guatemala?"
11
+ ],
12
+ "EUDR Compliance": [
13
+ "What are the key EUDR requirements for coffee imports?",
14
+ "How do I prove due diligence for my supply chain?",
15
+ "What documentation is needed for EUDR compliance?"
16
+ ],
17
+ "Risk Assessment": [
18
+ "What is the deforestation risk level in this region?",
19
+ "How do I assess supply chain risks?",
20
+ "What are the compliance deadlines?"
21
+ ]
22
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
  def handle_geojson_upload(file):
25
  """Handle GeoJSON file upload"""
26
  if file is not None:
27
+ return "✅ Document submitted successfully! You can now ask questions about this GeoJSON file.", gr.update(visible=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  else:
29
+ return "❌ Please select a GeoJSON file to upload.", gr.update(visible=True)
30
 
31
+ def start_chat(query, history):
32
+ """Start a new chat interaction"""
33
+ history = history + [(query, None)]
34
+ return gr.update(interactive=False), gr.update(selected=1), history
35
 
36
+ def finish_chat():
37
+ """Finish chat and reset input"""
38
+ return gr.update(interactive=True, value="")
 
 
39
 
40
+ async def chat_response(query, history, method, country, uploaded_file):
41
+ """Generate chat response based on method and inputs"""
42
 
43
+ # Validate inputs based on method
44
  if method == "Upload GeoJSON":
45
  if uploaded_file is None:
46
  warning_message = "⚠️ **No GeoJSON file uploaded.** Please upload a GeoJSON file first."
47
  history[-1] = (query, warning_message)
48
+ yield history, ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  return
50
  else: # "Talk to Reports"
51
  if not country:
52
  warning_message = "⚠️ **No country selected.** Please select a country to analyze reports."
53
  history[-1] = (query, warning_message)
54
+ yield history, ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  return
 
 
 
 
 
 
 
 
56
 
57
+ # Simulate processing time
58
+ response = ""
59
  if method == "Upload GeoJSON":
60
+ full_response = f"Based on your uploaded GeoJSON file, I can help you analyze the deforestation patterns and EUDR compliance aspects in your area of interest. Your question: '{query}' is being processed against the geographic data you provided."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  else:
62
+ full_response = f"Based on EUDR reports for {country}, I can help you understand deforestation patterns and compliance requirements. Your question: '{query}' is being analyzed against our {country} database."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
 
64
+ # Simulate streaming response
65
+ words = full_response.split()
66
+ for word in words:
67
+ response += word + " "
68
+ history[-1] = (query, response)
69
+ yield history, "**Sources:** Sample source documents would appear here..."
70
+ await asyncio.sleep(0.05)
71
+
72
+ def toggle_search_method(method):
73
+ """Toggle between GeoJSON upload and country selection"""
74
+ if method == "Upload GeoJSON":
75
+ return (
76
+ gr.update(visible=True), # geojson_section
77
+ gr.update(visible=False), # reports_section
78
+ gr.update(value=None), # dropdown_country
79
+ )
80
+ else: # "Talk to Reports"
81
+ return (
82
+ gr.update(visible=False), # geojson_section
83
+ gr.update(visible=True), # reports_section
84
+ gr.update(), # dropdown_country
85
+ )
86
+
87
+ def change_sample_questions(key):
88
+ """Update visible examples based on selected category"""
89
+ keys = list(SAMPLE_QUESTIONS.keys())
90
+ index = keys.index(key)
91
+ visible_bools = [False] * len(keys)
92
+ visible_bools[index] = True
93
+ return [gr.update(visible=visible_bools[i]) for i in range(len(keys))]
94
 
95
  # Set up Gradio Theme
96
  theme = gr.themes.Base(
97
+ primary_hue="green",
98
+ secondary_hue="blue",
99
  font=[gr.themes.GoogleFont("Poppins"), "ui-sans-serif", "system-ui", "sans-serif"],
100
+ text_size=gr.themes.utils.sizes.text_sm,
101
  )
102
 
103
+ init_prompt = """
104
  Hello, I am EUDR Q&A, an AI-powered conversational assistant designed to help you understand EU Deforestation Regulation compliance and analysis. I will answer your questions by using **EUDR reports and uploaded GeoJSON files**.
 
 
 
 
 
 
 
105
 
106
+ 💡 **How to use (tabs on right)**
107
+ - **Data Sources**: Choose to either upload a GeoJSON file for analysis or talk to EUDR reports filtered by country.
108
+ - **Examples**: Select from curated example questions across different categories.
109
+ - **Sources**: View the content sources used to generate answers for fact-checking.
110
 
111
+ ⚠️ For limitations and data collection information, please check the **Disclaimer** tab.
112
+ """
113
+
114
+ with gr.Blocks(title="EUDR Q&A", theme=theme, css="style.css") as demo:
115
+
116
+ # Main Chat Interface
117
  with gr.Tab("EUDR Q&A"):
118
+ with gr.Row():
119
+ # Left column - Chat interface (2/3 width)
 
120
  with gr.Column(scale=2):
121
  chatbot = gr.Chatbot(
122
+ value=[(None, init_prompt)],
123
+ show_copy_button=True,
124
+ show_label=False,
125
+ layout="panel",
126
+ avatar_images=(None, "🌳"),
127
+ height=500
128
  )
129
+
130
+ # Feedback UI
131
+ with gr.Column():
132
  with gr.Row(visible=False) as feedback_row:
133
  gr.Markdown("Was this response helpful?")
134
  with gr.Row():
135
+ okay_btn = gr.Button("👍 Okay", size="sm")
136
+ not_okay_btn = gr.Button("👎 Not to expectations", size="sm")
137
  feedback_thanks = gr.Markdown("Thanks for the feedback!", visible=False)
138
+
139
+ # Input textbox
140
+ with gr.Row():
141
+ textbox = gr.Textbox(
142
+ placeholder="Ask me anything about EUDR compliance or upload your GeoJSON for analysis!",
143
+ show_label=False,
144
+ scale=7,
145
+ lines=1,
146
+ interactive=True
147
+ )
148
+
149
+ # Right column - Controls and tabs (1/3 width)
150
+ with gr.Column(scale=1, variant="panel"):
151
  with gr.Tabs() as tabs:
152
+
153
+ # Data Sources Tab
154
+ with gr.Tab("Data Sources", id=2):
 
 
155
  search_method = gr.Radio(
156
  choices=["Upload GeoJSON", "Talk to Reports"],
157
  label="Choose data source",
158
+ info="Upload a GeoJSON file for analysis or select country-specific EUDR reports",
159
  value="Upload GeoJSON",
160
  )
161
+
162
+ # GeoJSON Upload Section
163
  with gr.Group(visible=True) as geojson_section:
164
  uploaded_file = gr.File(
165
  label="Upload GeoJSON File",
166
  file_types=[".geojson", ".json"],
167
  file_count="single"
168
  )
 
 
 
169
  submit_file_btn = gr.Button("Submit GeoJSON", variant="primary")
170
+ upload_status = gr.Markdown("", visible=False)
171
+
172
+ # Talk to Reports Section
173
  with gr.Group(visible=False) as reports_section:
 
174
  dropdown_country = gr.Dropdown(
175
  ["Ecuador", "Guatemala"],
176
  label="Select Country",
177
  value=None,
178
  interactive=True,
179
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
 
181
+ # Examples Tab
182
+ with gr.Tab("Examples", id=0):
183
+ examples_hidden = gr.Textbox(visible=False)
 
 
 
 
 
 
 
 
 
184
 
185
+ first_key = list(SAMPLE_QUESTIONS.keys())[0]
186
+ dropdown_samples = gr.Dropdown(
187
+ SAMPLE_QUESTIONS.keys(),
188
+ value=first_key,
189
+ interactive=True,
190
+ show_label=True,
191
+ label="Select a category of sample questions"
192
+ )
193
 
194
+ # Create example sections
195
+ sample_groups = []
196
+ for i, (key, questions) in enumerate(SAMPLE_QUESTIONS.items()):
197
  examples_visible = True if i == 0 else False
198
+ with gr.Row(visible=examples_visible) as group_examples:
199
+ gr.Examples(
200
+ questions,
201
  [examples_hidden],
202
  examples_per_page=8,
203
  run_on_click=False,
 
 
204
  )
205
+ sample_groups.append(group_examples)
206
+
207
+ # Sources Tab
208
+ with gr.Tab("Sources", id=1):
209
+ sources_textbox = gr.HTML(
210
+ show_label=False,
211
+ value="Source documents will appear here after you ask a question..."
212
+ )
213
+
214
+ # Guidelines Tab
215
+ with gr.Tab("Guidelines"):
 
 
 
 
 
 
 
 
216
  gr.Markdown("""
217
+ #### Welcome to EUDR Q&A!
218
+
219
+ This AI-powered assistant helps you understand EU Deforestation Regulation compliance and analyze geographic data.
220
+
221
+ ## 💬 How to Ask Effective Questions
222
+
223
  | ❌ Less Effective | ✅ More Effective |
224
  |------------------|-------------------|
225
+ | "What is deforestation?" | "What are the main deforestation hotspots in Ecuador?" |
226
+ | "Tell me about compliance" | "What EUDR requirements apply to coffee imports from Guatemala?" |
227
+ | "Show me data" | "What is the deforestation rate in the uploaded region?" |
228
+
229
+ ## 🔍 Using Data Sources
230
+
231
+ **Upload GeoJSON:** Upload your geographic data files for specific area analysis
232
+ **Talk to Reports:** Select Ecuador or Guatemala for country-specific EUDR analysis
233
+
234
  ## ⭐ Best Practices
 
 
 
 
235
 
236
+ - Be specific about regions, commodities, or time periods
237
+ - Ask one question at a time for clearer answers
238
+ - Use follow-up questions to explore topics deeper
239
+ - Provide context when possible
240
+ """)
 
 
 
 
 
 
241
 
242
+ # About Tab
243
+ with gr.Tab("About"):
244
+ gr.Markdown("""
245
+ ## About EUDR Q&A
246
+
247
+ The **EU Deforestation Regulation (EUDR)** requires companies to ensure that specific commodities
248
+ placed on the EU market are deforestation-free and legally produced.
249
+
250
+ This AI-powered tool helps stakeholders:
251
+ - Understand EUDR compliance requirements
252
+ - Analyze geographic deforestation data
253
+ - Assess supply chain risks
254
+ - Navigate complex regulatory landscapes
255
+
256
+ **Developed by GIZ** to enhance accessibility and understanding of EUDR requirements
257
+ through advanced AI and geographic data processing capabilities.
258
+
259
+ ### Key Features:
260
+ - Interactive analysis of uploaded GeoJSON files
261
+ - Country-specific EUDR compliance guidance
262
+ - Real-time question answering with source citations
263
+ - User-friendly interface for complex regulatory information
264
+ """)
265
+
266
+ # Disclaimer Tab
267
+ with gr.Tab("Disclaimer"):
268
+ gr.Markdown("""
269
+ ## Important Disclaimers
270
+
271
+ ⚠️ **Scope & Limitations:**
272
+ - This tool is designed for EUDR compliance assistance and geographic data analysis
273
+ - Responses should not be considered official legal or compliance advice
274
+ - Always consult qualified professionals for official compliance decisions
275
+
276
+ ⚠️ **Data & Privacy:**
277
+ - Uploaded GeoJSON files are processed temporarily for analysis
278
+ - We collect usage statistics to improve the tool
279
+ - No sensitive geographic data is permanently stored
280
+
281
+ ⚠️ **AI Limitations:**
282
+ - Responses are AI-generated and may contain inaccuracies
283
+ - The tool is a prototype under continuous development
284
+ - Always verify important information with authoritative sources
285
+
286
+ **Data Collection:** We collect questions, answers, feedback, and anonymized usage statistics
287
+ to improve tool performance based on legitimate interest in service enhancement.
288
+
289
+ By using this tool, you acknowledge these limitations and agree to use responses responsibly.
290
+ """)
291
+
292
+ # Event Handlers
293
+
294
+ # Toggle search method
295
+ search_method.change(
296
+ fn=toggle_search_method,
297
+ inputs=[search_method],
298
+ outputs=[geojson_section, reports_section, dropdown_country]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
  )
300
 
301
+ # File upload
302
+ submit_file_btn.click(
303
+ fn=handle_geojson_upload,
304
+ inputs=[uploaded_file],
305
+ outputs=[upload_status, upload_status]
306
  )
 
 
 
 
 
 
307
 
308
+ # Chat functionality
309
+ textbox.submit(
310
+ start_chat,
311
+ [textbox, chatbot],
312
+ [textbox, tabs, chatbot],
313
+ queue=False
314
+ ).then(
315
+ chat_response,
316
+ [textbox, chatbot, search_method, dropdown_country, uploaded_file],
317
+ [chatbot, sources_textbox]
318
+ ).then(
319
+ lambda: gr.update(visible=True),
320
+ outputs=[feedback_row]
321
+ ).then(
322
+ finish_chat,
323
+ outputs=[textbox]
324
+ )
325
 
326
+ # Examples functionality
327
+ examples_hidden.change(
328
+ start_chat,
329
+ [examples_hidden, chatbot],
330
+ [textbox, tabs, chatbot],
331
+ queue=False
332
+ ).then(
333
+ chat_response,
334
+ [examples_hidden, chatbot, search_method, dropdown_country, uploaded_file],
335
+ [chatbot, sources_textbox]
336
+ ).then(
337
+ lambda: gr.update(visible=True),
338
+ outputs=[feedback_row]
339
+ ).then(
340
+ finish_chat,
341
+ outputs=[textbox]
342
+ )
343
 
344
+ # Sample questions dropdown
345
+ dropdown_samples.change(
346
+ change_sample_questions,
347
+ [dropdown_samples],
348
+ sample_groups
349
+ )
350
+
351
+ # Feedback buttons
352
+ okay_btn.click(
353
+ lambda: (gr.update(visible=False), gr.update(visible=True)),
354
+ outputs=[feedback_row, feedback_thanks]
355
+ )
356
+
357
+ not_okay_btn.click(
358
+ lambda: (gr.update(visible=False), gr.update(visible=True)),
359
+ outputs=[feedback_row, feedback_thanks]
360
+ )
 
 
 
 
 
361
 
362
+ # Launch the app
363
+ if __name__ == "__main__":
364
+ demo.launch()
auditqa/__init__.py DELETED
@@ -1 +0,0 @@
1
- # packaging
 
 
auditqa/__pycache__/__init__.cpython-310.pyc DELETED
Binary file (127 Bytes)
 
auditqa/__pycache__/process_chunks.cpython-310.pyc DELETED
Binary file (3.89 kB)
 
auditqa/__pycache__/reader.cpython-310.pyc DELETED
Binary file (2.09 kB)
 
auditqa/__pycache__/reports.cpython-310.pyc DELETED
Binary file (11.3 kB)
 
auditqa/__pycache__/retriever.cpython-310.pyc DELETED
Binary file (1.8 kB)
 
auditqa/__pycache__/sample_questions.cpython-310.pyc DELETED
Binary file (4.89 kB)
 
auditqa/__pycache__/utils.cpython-310.pyc DELETED
Binary file (5.39 kB)
 
auditqa/doc_process.py DELETED
@@ -1,115 +0,0 @@
1
- import glob
2
- import os
3
- from langchain.text_splitter import RecursiveCharacterTextSplitter, SentenceTransformersTokenTextSplitter
4
- from transformers import AutoTokenizer
5
- from torch import cuda
6
- from langchain_community.document_loaders import PyMuPDFLoader
7
- from langchain_community.embeddings import HuggingFaceEmbeddings, HuggingFaceInferenceAPIEmbeddings
8
- from langchain_community.vectorstores import Qdrant
9
- from qdrant_client import QdrantClient
10
- from auditqa.reports import files, report_list
11
- device = 'cuda' if cuda.is_available() else 'cpu'
12
-
13
- ### This script is NO MORE IN USE #####
14
- # Preprocessed report pdf is brought along with chunks and added to existing reports database
15
-
16
- # path to the pdf files
17
- path_to_data = "./data/pdf/"
18
-
19
- def process_pdf():
20
- """
21
- this method reads through the files and report_list to create the vector database
22
- """
23
- # load all the files using PyMuPDFfLoader
24
- docs = {}
25
- for file in report_list:
26
- try:
27
- docs[file] = PyMuPDFLoader(path_to_data + file + '.pdf').load()
28
- except Exception as e:
29
- print("Exception: ", e)
30
-
31
-
32
- # text splitter based on the tokenizer of a model of your choosing
33
- # to make texts fit exactly a transformer's context window size
34
- # langchain text splitters: https://python.langchain.com/docs/modules/data_connection/document_transformers/
35
- chunk_size = 256
36
- text_splitter = RecursiveCharacterTextSplitter.from_huggingface_tokenizer(
37
- AutoTokenizer.from_pretrained("BAAI/bge-large-en-v1.5"),
38
- chunk_size=chunk_size,
39
- chunk_overlap=10,
40
- add_start_index=True,
41
- strip_whitespace=True,
42
- separators=["\n\n", "\n"],
43
- )
44
- # we iterate through the files which contain information about its
45
- # 'source'=='category', 'subtype', these are used in UI for document selection
46
- # which will be used later for filtering database
47
- all_documents = {}
48
- categories = list(files.keys())
49
- # iterate through 'source'
50
- for category in categories:
51
- print("documents splitting in source:",category)
52
- all_documents[category] = []
53
- subtypes = list(files[category].keys())
54
- # iterate through 'subtype' within the source
55
- # example source/category == 'District', has subtypes which is district names
56
- for subtype in subtypes:
57
- print("document splitting for subtype:",subtype)
58
- for file in files[category][subtype]:
59
-
60
- # create the chunks
61
- doc_processed = text_splitter.split_documents(docs[file])
62
- print("chunks in subtype:",subtype, "are:",len(doc_processed))
63
-
64
- # add metadata information
65
- for doc in doc_processed:
66
- doc.metadata["source"] = category
67
- doc.metadata["subtype"] = subtype
68
- doc.metadata["year"] = file[-4:]
69
- doc.metadata["filename"] = file
70
-
71
- all_documents[category].append(doc_processed)
72
-
73
- # convert list of list to flat list
74
- for key, docs_processed in all_documents.items():
75
- docs_processed = [item for sublist in docs_processed for item in sublist]
76
- print("length of chunks in source:",key, "are:",len(docs_processed))
77
- all_documents[key] = docs_processed
78
- all_documents['allreports'] = [sublist for key,sublist in all_documents.items()]
79
- all_documents['allreports'] = [item for sublist in all_documents['allreports'] for item in sublist]
80
- # define embedding model
81
- embeddings = HuggingFaceEmbeddings(
82
- model_kwargs = {'device': device},
83
- encode_kwargs = {'normalize_embeddings': True},
84
- model_name="BAAI/bge-large-en-v1.5"
85
- )
86
- # placeholder for collection
87
- qdrant_collections = {}
88
-
89
-
90
- for file,value in all_documents.items():
91
- if file == "allreports":
92
- print("emebddings for:",file)
93
- qdrant_collections[file] = Qdrant.from_documents(
94
- value,
95
- embeddings,
96
- location=":memory:",
97
- collection_name=file,
98
- )
99
- print(qdrant_collections)
100
- print("vector embeddings done")
101
- return qdrant_collections
102
-
103
- def get_local_qdrant():
104
- qdrant_collections = {}
105
- embeddings = HuggingFaceEmbeddings(
106
- model_kwargs = {'device': device},
107
- encode_kwargs = {'normalize_embeddings': True},
108
- model_name="BAAI/bge-en-icl")
109
- list_ = ['Consolidated','District','Ministry','allreports']
110
- for val in list_:
111
- client = QdrantClient(path=f"./data/{val}")
112
- print(client.get_collections())
113
- qdrant_collections[val] = Qdrant(client=client, collection_name=val, embeddings=embeddings, )
114
- return qdrant_collections
115
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
auditqa/process_chunks.py DELETED
@@ -1,158 +0,0 @@
1
- import glob
2
- import pandas as pd
3
- import json
4
- import os
5
- from langchain.text_splitter import RecursiveCharacterTextSplitter, SentenceTransformersTokenTextSplitter
6
- from transformers import AutoTokenizer
7
- from torch import cuda
8
- from langchain_community.embeddings import HuggingFaceEmbeddings, HuggingFaceInferenceAPIEmbeddings
9
- from langchain_community.vectorstores import Qdrant
10
- from qdrant_client import QdrantClient
11
- from auditqa.reports import files, report_list
12
- from langchain.docstore.document import Document
13
- import configparser
14
-
15
- # read all the necessary variables
16
- device = 'cuda' if cuda.is_available() else 'cpu'
17
- path_to_data = "./reports/"
18
-
19
-
20
- ##---------------------functions -------------------------------------------##
21
- def getconfig(configfile_path:str):
22
- """
23
- Read the config file
24
-
25
- Params
26
- ----------------
27
- configfile_path: file path of .cfg file
28
- """
29
-
30
- config = configparser.ConfigParser()
31
-
32
- try:
33
- config.read_file(open(configfile_path))
34
- return config
35
- except:
36
- logging.warning("config file not found")
37
-
38
- def open_file(filepath):
39
- with open(filepath) as file:
40
- simple_json = json.load(file)
41
- return simple_json
42
-
43
- def load_chunks():
44
- """
45
- this method reads through the files and report_list to create the vector database
46
- """
47
-
48
- # we iterate through the files which contain information about its
49
- # 'source'=='category', 'subtype', these are used in UI for document selection
50
- # which will be used later for filtering database
51
- config = getconfig("./model_params.cfg")
52
-
53
- doc_processed = open_file(path_to_data + "docling_chunks.json" )
54
- chunks_list = []
55
-
56
- for doc in doc_processed:
57
- chunks_list.append(Document(page_content= doc['content'],
58
- metadata=doc['metadata']
59
- ))
60
-
61
- # define embedding model
62
- embeddings = HuggingFaceEmbeddings(
63
- model_kwargs = {'device': device},
64
- show_progress= True,
65
- encode_kwargs = {'normalize_embeddings': bool(int(config.get('retriever','NORMALIZE'))),
66
- 'batch_size':100},
67
- model_name=config.get('retriever','MODEL')
68
- )
69
- # placeholder for collection
70
- qdrant_collections = {}
71
- print("embeddings started")
72
- #batch_size = 1000 # Adjust this value based on your system's memory capacity
73
- #for i in range(0, len(chunks_list), batch_size):
74
- # print("embedding",(i+batch_size)/1000)
75
- # batch_docs = chunks_list[i:i+batch_size]
76
- # qdrant = Qdrant.from_documents(
77
- # batch_docs, embeddings,
78
- # path="/data/local_qdrant",
79
- # recreate_collection=False,
80
- # collection_name='reportsFeb2025',
81
- # )
82
-
83
- qdrant_collections['docling'] = Qdrant.from_documents(
84
- chunks_list,
85
- embeddings,
86
- path="/data/local_qdrant",
87
- collection_name='docling',
88
- )
89
- print(qdrant_collections)
90
- print("vector embeddings done")
91
- return qdrant_collections
92
-
93
- def load_old_chunks():
94
- """
95
- this method reads through the files and report_list to create the vector database
96
- """
97
-
98
- # we iterate through the files which contain information about its
99
- # 'source'=='category', 'subtype', these are used in UI for document selection
100
- # which will be used later for filtering database
101
- config = getconfig("./model_params.cfg")
102
- files = pd.read_json("./axa_processed_chunks_update.json")
103
- all_documents= []
104
- # iterate through 'source'
105
- for i in range(len(files)):
106
- # load the chunks
107
- try:
108
- doc_processed = open_file(path_to_data + "/chunks/"+ os.path.basename(files.loc[i,'chunks_filepath']))
109
- doc_processed = doc_processed['paragraphs']
110
-
111
- except Exception as e:
112
- print("Exception: ", e)
113
- print("chunks in subtype:", files.loc[i,'filename'], "are:",len(doc_processed))
114
-
115
- # add metadata information
116
-
117
- for doc in doc_processed:
118
- all_documents.append(Document(page_content= str(doc['content']),
119
- metadata={"source": files.loc[i,'category'],
120
- "subtype":os.path.splitext(files.loc[i,'filename'])[0],
121
- "year":str(files.loc[i,'year']),
122
- "filename":files.loc[0,'filename'],
123
- "page":doc['metadata']['page'],
124
- "headings":doc['metadata']['headings']}))
125
-
126
- # convert list of list to flat list
127
- print("length of chunks:",len(all_documents))
128
-
129
- # define embedding model
130
- embeddings = HuggingFaceEmbeddings(
131
- model_kwargs = {'device': device},
132
- encode_kwargs = {'normalize_embeddings': bool(int(config.get('retriever','NORMALIZE')))},
133
- model_name=config.get('retriever','MODEL')
134
- )
135
- # placeholder for collection
136
- qdrant_collections = {}
137
- qdrant_collections['allreports'] = Qdrant.from_documents(
138
- all_documents,
139
- embeddings,
140
- path="/data/local_qdrant",
141
- collection_name='allreports',
142
- )
143
- print(qdrant_collections)
144
- print("vector embeddings done")
145
- return qdrant_collections
146
-
147
- def get_local_qdrant():
148
- """once the local qdrant server is created this is used to make the connection to exisitng server"""
149
- config = getconfig("./model_params.cfg")
150
- qdrant_collections = {}
151
- embeddings = HuggingFaceEmbeddings(
152
- model_kwargs = {'device': device},
153
- encode_kwargs = {'normalize_embeddings': True},
154
- model_name=config.get('retriever','MODEL'))
155
- client = QdrantClient(path="/data/local_qdrant")
156
- print("Collections in local Qdrant:",client.get_collections())
157
- qdrant_collections['docling'] = Qdrant(client=client, collection_name='docling', embeddings=embeddings, )
158
- return qdrant_collections
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
auditqa/reader.py DELETED
@@ -1,80 +0,0 @@
1
- from huggingface_hub import InferenceClient
2
- from auditqa.process_chunks import getconfig
3
- from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler
4
- from langchain_community.llms import HuggingFaceEndpoint
5
- from langchain_community.chat_models.huggingface import ChatHuggingFace
6
- import os
7
- from dotenv import load_dotenv
8
- load_dotenv()
9
-
10
- model_config = getconfig("model_params.cfg")
11
-
12
- #HF_token = os.environ["LLAMA_3_1"]
13
- #INF_SERVERLESS = os.environ["INF_SERVERLESS"]
14
- NEBIUS_LLAMA3_1_8B = os.environ["NEBIUS"]
15
-
16
-
17
-
18
- def inf_provider():
19
- """return the inf service provider"""
20
- provider=model_config.get('reader','INF_PROVIDER')
21
- client = InferenceClient(
22
- provider=provider,
23
- api_key=NEBIUS_LLAMA3_1_8B,
24
- bill_to="GIZ",
25
- )
26
- print(f"getting {provider} client")
27
-
28
- return client
29
-
30
-
31
-
32
- def nvidia_client():
33
- """ returns the nvidia server client """
34
- client = InferenceClient(
35
- base_url=model_config.get('reader','NVIDIA_ENDPOINT'),
36
- api_key=NVIDIA_SERVER)
37
- print("getting nvidia client")
38
-
39
- return client
40
-
41
-
42
- def serverless_api():
43
- try:
44
- if not INF_SERVERLESS:
45
- raise ValueError("LLAMA_3_1 environment variable is empty")
46
-
47
- model_id = "meta-llama/Meta-Llama-3-8B-Instruct"
48
-
49
- client = InferenceClient(
50
- model=model_id,
51
- api_key=INF_SERVERLESS,
52
- )
53
-
54
- return client
55
-
56
- except Exception as e:
57
- raise
58
-
59
-
60
- def dedicated_endpoint():
61
- """ returns the dedicated server endpoint"""
62
-
63
- # Set up the streaming callback handler
64
- callback = StreamingStdOutCallbackHandler()
65
-
66
- # Initialize the HuggingFaceEndpoint with streaming enabled
67
- llm_qa = HuggingFaceEndpoint(
68
- endpoint_url=model_config.get('reader', 'DEDICATED_ENDPOINT'),
69
- max_new_tokens=int(model_config.get('reader','MAX_TOKENS')),
70
- repetition_penalty=1.03,
71
- timeout=70,
72
- huggingfacehub_api_token=HF_token,
73
- streaming=True, # Enable streaming for real-time token generation
74
- callbacks=[callback] # Add the streaming callback handler
75
- )
76
-
77
- # Create a ChatHuggingFace instance with the streaming-enabled endpoint
78
- chat_model = ChatHuggingFace(llm=llm_qa)
79
- print("getting dedicated endpoint wrapped in ChathuggingFace ")
80
- return chat_model
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
auditqa/reports.py DELETED
@@ -1,451 +0,0 @@
1
- new_report_list = ['Agriculture Cluster Development Project IDA Credit 56110-UG 2023',
2
- 'Agriculture Value Chain Development Project (AVCDP) 2023',
3
- 'Albertine Region Sustainable Development Project (ARSDP) 2023',
4
- 'Alebtong District Local Government 2023',
5
- 'Amuru District Local Government 2023',
6
- 'Annual Consolidated OAG 2018',
7
- 'Annual Consolidated OAG 2019',
8
- 'Apac District Local Government 2023',
9
- 'Budaka District Local Government 2023',
10
- 'Bugdet Performance Thematic Report 2023',
11
- 'Bugiri District Local Government 2022',
12
- 'Bugweri District Local Government 2022',
13
- 'Buhweju District Local Government 2023',
14
- 'Bukomansimbi District Local Government 2022',
15
- 'Bukwo District Local Government 2023',
16
- 'Bulambuli District Local Government 2023',
17
- 'Buliisa District Local Government 2023',
18
- 'Bundibugyo District Local Government 2023',
19
- 'Bunyangabu District Local Government 2023',
20
- 'Busia District Local Government 2023',
21
- 'Butambala District Local Government 2023',
22
- 'Buyende District Local Government 2022',
23
- 'East Africas Centers of Excellence for Skills and Tertiary Education in Biomedical Sciences Phase1 2023',
24
- 'Entebbe Regional Referral Hospital 2023',
25
- 'GAVI the Vaccine Alliance Health Systems Strengthening Coverage & Equity 2023',
26
- 'GAVI the Vaccine Alliance COVID-19 Vaccine Delivery Support Early Access Window 2023',
27
- 'Gomba District Local Government 2022',
28
- 'Gulu District Local Government 2018',
29
- 'Gulu District Local Government 2019',
30
- 'Gulu District Local Government 2020',
31
- 'Gulu District Local Government 2021',
32
- 'Gulu District Local Government 2022',
33
- 'Gulu District Local Government 2023',
34
- 'Gulu Regional Referral Hospital 2023',
35
- 'Hoima District Local Government 2023',
36
- 'Ibanda District Local Government 2023',
37
- 'Iganga District Local Government 2022',
38
- 'Isingiro District Local Government 2023',
39
- 'Kaabong District Local Government 2023',
40
- 'Kabale District Local Government 2023',
41
- 'Kabarole District Local Government 2023',
42
- 'Kaberamaido District Local Government 2022',
43
- 'Kalaki District Local Government 2023',
44
- 'Kalangala District Local Government 2018',
45
- 'Kalangala District Local Government 2019',
46
- 'Kalangala District Local Government 2020',
47
- 'Kalangala District Local Government 2021',
48
- 'Kalangala District Local Government 2022',
49
- 'Kalungu District Local Government 2022',
50
- 'Kamuli District Local Government 2022',
51
- 'Kamwenge District Local Government 2023',
52
- 'Kanungu District Local Government 2023',
53
- 'Kapchorwa District Local Government 2023',
54
- 'Kasese District Local Government 2023',
55
- 'Kasese Municipal Council 2023',
56
- 'Kassanda District Local Government 2023',
57
- 'Katakwi District Local Government 2023',
58
- 'Kawempe National Referral Hospital 2023',
59
- 'Kazo District Local Government 2023',
60
- 'KCCA 2018',
61
- 'KCCA 2019',
62
- 'KCCA 2020',
63
- 'KCCA 2021',
64
- 'KCCA 2022',
65
- 'Kibaale District Local Government 2023',
66
- 'Kiboga District Local Government 2023',
67
- 'Kibuku District Local Government 2023',
68
- 'Kikuube District Local Government 2023',
69
- 'Kiruddu National Referral Hospital 2023',
70
- 'Kiruhura District Local Government 2023',
71
- 'Kiryandongo District Local Government 2023',
72
- 'Kisoro District Local Government 2023',
73
- 'Kitagwenda District Local Government 2023',
74
- 'Kitgum District Local Government 2023',
75
- 'Kole District Local Government 2023',
76
- 'Kwania District Local Government 2023',
77
- 'Kween District Local Government 2023',
78
- 'Kyankwanzi District Local Government 2023',
79
- 'Kyegegwa District Local Government 2023',
80
- 'Kyenjojo District Local Government 2023',
81
- 'Kyotera District Local Government 2023',
82
- 'Lamwo District Local Government 2023',
83
- 'Lira District Local Government 2023',
84
- 'Lira Regional Referral Hospital 2023',
85
- 'Luuka District Local Government 2022',
86
- 'Lwengo District Local Government 2022',
87
- 'Lyantonde District Local Government 2022',
88
- 'Manafwa District Local Government 2023',
89
- 'Masaka District Local Government 2022',
90
- 'Masaka Regional Referral Hospital 2022',
91
- 'Masindi District Local Government 2023',
92
- 'Mayuge District Local Government 2022',
93
- 'Mbale District Local Government 2023',
94
- 'Mbale Regional Referral Hospital 2023',
95
- 'Mbarara District Local Government 2023',
96
- 'Mbarara Regional Referral Hospital 2023',
97
- 'Ministry of Agriculture, Animal Industry and Fisheries 2019',
98
- 'Ministry of Agriculture, Animal Industry and Fisheries 2021',
99
- 'Ministry of Agriculture, Animal Industry and Fisheries 2022',
100
- 'Ministry of Defence and Veteran Affairs (MoDVA) 2023',
101
- 'Ministry of Health 2023',
102
- 'Ministry of Internal Affairs 2023',
103
- 'Ministry of Justice and Constitutional Affairs 2023',
104
- 'Ministry of Lands, Housing and Urban Development (MOLHUD) 2023',
105
- 'Ministry of Works and Transport (MoWT) 2021',
106
- 'Ministry of Works and Transport (MoWT) 2022',
107
- 'Ministry of Works and Transport (MoWT) 2019',
108
- 'Ministry of Works and Transport (MoWT) 2020',
109
- 'Mitooma District Local Government 2023',
110
- 'Moroto Regional Referral Hospital 2023',
111
- 'Moyo District Local Government 2023',
112
- 'Mubende District Local Government 2022',
113
- 'Mubende Regional Referral Hospital 2022',
114
- 'Mulago National Referral Hospital 2023',
115
- 'Mulago Specialized Women and Neonatal Hospital 2023',
116
- 'Nakaseke District Local Government 2023',
117
- 'Namayingo District Local Government 2022',
118
- 'Namutumba District Local Government 2022',
119
- 'Napak District Local Government 2023',
120
- 'National Animal Genetic Resource Centre and Data Bank 2023',
121
- 'National Oil Palm Project (NOPP) IFAD 2023',
122
- 'Ntoroko District Local Government 2023',
123
- 'Ntungamo District Local Government 2023',
124
- 'Nwoya District Local Government 2023',
125
- 'Obongi District Local Government 2023',
126
- 'Office of the President 2023',
127
- 'Omoro District Local Government 2023',
128
- 'Pallisa District Local Government 2023',
129
- 'Parish Development Model Thematic Report 2023',
130
- 'Public Financial Management System Thematic Report 2023',
131
- 'Rakai District Local Government 2022',
132
- 'Rubanda District Local Government 2023',
133
- 'Rubirizi District Local Government 2023',
134
- 'Rukiga District Local Government 2023',
135
- 'Rukungiri District Local Government 2023',
136
- 'Rwampara District Local Government ,2023',
137
- 'Sample of Selected Urban Infrastructure Projects implemented by Gulu City Council 2021',
138
- 'Sheema District Local Government 2023',
139
- 'Sironko District Local Government 2023',
140
- 'Soroti Regional Referral Hospital 2023',
141
- 'Terego District Local Government 2023',
142
- 'Tororo District Local Government 2023',
143
- 'Uganda Coffee Development Authority (UCDA) 2023',
144
- 'Uganda Cotton Development Organization 2023',
145
- 'Uganda Country Coordinating Mechanism (UCCM) 2022',
146
- 'Uganda Police Force 2023',
147
- 'Uganda Prisons Service (UPS) 2023',
148
- 'Uganda Registration Services Bureau - Liquidation 2023',
149
- 'Uganda Spain Debt SWAP (USDP) 2023',
150
- 'Bugiri District Local Government 2023',
151
- 'Bugweri District Local Government 2023',
152
- 'Bukomansimbi District Local Government 2023',
153
- 'Buyende District Local Government 2023',
154
- 'Delivery of Universal Primary Education Value for money Audit Report 2023',
155
- 'Education Services for Learners with Special Needs Value for money Audit Report 2023',
156
- 'GAVI the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023',
157
- 'Gomba District Local Government 2023',
158
- 'Iganga District Local Government 2023',
159
- 'Kaberamiado District Local Government 2023',
160
- 'Kalangala District Local Government 2023',
161
- 'Kalungu District Local Government 2023',
162
- 'Kamuli District Local Governmnent 2023',
163
- 'Koboko District Local Government 2023',
164
- 'Luuka District Local Government 2023',
165
- 'Lwengo District Local Government 2023',
166
- 'Lyantonde District Local Government 2023',
167
- 'Madi Okollo District Local Government 2023',
168
- 'Maracha District Local Government 2023',
169
- 'Masaka District Local Government 2023',
170
- 'Masaka Regional Referral Hospital 2023',
171
- 'Mayuge District Local Government 2023',
172
- 'Ministry of Agriculture, Animal Industry and Fisheries 2020',
173
- 'Ministry of Local Government (MoLG) 2023',
174
- 'Ministry of Works and Transport (MoWT) 2023',
175
- 'Mubende District Local Government 2023',
176
- 'Mubende Regional Referral Hospital 2023',
177
- 'Namayingo District Local Government 2023',
178
- 'Namisindwa District Local Government 2023',
179
- 'Namutumba District Local Government 2023',
180
- 'Napak District Local Government 2023',
181
- 'Nebbi District Local Government 2023',
182
- 'Ntoroko District Local Government 2023',
183
- 'Packwach District Local Government 2023',
184
- 'Pader District Local Government 2023',
185
- 'Rakai District Local Government 2023',
186
- 'Uganda Civil Aviation Authority (UCAA) 2023',
187
- 'Uganda National Roads Authority (UNRA) 2023',
188
- 'Uganda Railway Corporation (URC) 2023',
189
- 'Uganda Road Fund (URF) 2023',
190
- 'Yumbe District Local Government 2023',
191
- 'Zombo District Local Government 2023',
192
- 'Annual Consolidated OAG 2020',
193
- 'Annual Consolidated OAG 2021',
194
- 'Annual Consolidated OAG 2022',
195
- 'Annual Consolidated OAG 2023',
196
- 'Annual Consolidated OAG 2024']
197
- report_list = ['Annual Consolidated OAG audit reports 2018',
198
- 'Annual Consolidated OAG audit reports 2019',
199
- 'Annual Consolidated OAG audit reports 2020',
200
- 'Annual Consolidated OAG audit reports 2021',
201
- 'Annual Consolidated OAG audit reports 2022',
202
- 'Gulu DLG Report of Auditor General 2018',
203
- 'Gulu DLG Report of Auditor General 2019',
204
- 'Gulu DLG Report of Auditor General 2020',
205
- 'Gulu DLG Report of Auditor General 2021',
206
- 'Gulu DLG Report of Auditor General 2022',
207
- 'Kalangala DLG Report of Auditor General 2018',
208
- 'Kalangala DLG Report of Auditor General 2019',
209
- 'Kalangala DLG Report of Auditor General 2020',
210
- 'Kalangala DLG Report of Auditor General 2021',
211
- 'Kalangala DLG Report of Auditor General 2022',
212
- 'KCCA Report of Auditor General 2018',
213
- 'KCCA Report of Auditor General 2019',
214
- 'KCCA Report of Auditor General 2020',
215
- 'KCCA Report of Auditor General 2021',
216
- 'KCCA Report of Auditor General 2022',
217
- 'MAAIF Report of Auditor General 2019',
218
- 'MAAIF Report of Auditor General 2021',
219
- 'MAAIF Report of Auditor General 2022',
220
- 'MAAIF Report of Auditor General 2020',
221
- 'MWTS Report of Auditor General 2019',
222
- 'MWTS Report of Auditor General 2020',
223
- 'MWTS Report of Auditor General 2021',
224
- 'MWTS Report of Auditor General 2022']
225
-
226
- files = {'Consolidated':{'Consolidated Annnual Report':['Annual Consolidated OAG audit reports 2018',
227
- 'Annual Consolidated OAG audit reports 2019',
228
- 'Annual Consolidated OAG audit reports 2020',
229
- 'Annual Consolidated OAG audit reports 2021',
230
- 'Annual Consolidated OAG audit reports 2022']},
231
- 'District':{'Gulu':['Gulu DLG Report of Auditor General 2018',
232
- 'Gulu DLG Report of Auditor General 2019',
233
- 'Gulu DLG Report of Auditor General 2020',
234
- 'Gulu DLG Report of Auditor General 2021',
235
- 'Gulu DLG Report of Auditor General 2022'],
236
- 'Kalangala':['Kalangala DLG Report of Auditor General 2018',
237
- 'Kalangala DLG Report of Auditor General 2019',
238
- 'Kalangala DLG Report of Auditor General 2020',
239
- 'Kalangala DLG Report of Auditor General 2021',
240
- 'Kalangala DLG Report of Auditor General 2022'],
241
- 'Kampala':['KCCA Report of Auditor General 2018',
242
- 'KCCA Report of Auditor General 2019',
243
- 'KCCA Report of Auditor General 2020',
244
- 'KCCA Report of Auditor General 2021',
245
- 'KCCA Report of Auditor General 2022']},
246
- 'Ministry':{'Agriculture, Animal Industry and Fisheries':['MAAIF Report of Auditor General 2019',
247
- 'MAAIF Report of Auditor General 2020',
248
- 'MAAIF Report of Auditor General 2021',
249
- 'MAAIF Report of Auditor General 2022'],
250
- 'Works and Transport':['MWTS Report of Auditor General 2019',
251
- 'MWTS Report of Auditor General 2020',
252
- 'MWTS Report of Auditor General 2021',
253
- 'MWTS Report of Auditor General 2022']
254
- }
255
- }
256
- new_files = {'Consolidated': ['Annual Consolidated OAG 2024',
257
- 'Annual Consolidated OAG 2023',
258
- 'Annual Consolidated OAG 2022',
259
- 'Annual Consolidated OAG 2021',
260
- 'Annual Consolidated OAG 2020',
261
- 'Annual Consolidated OAG 2019',
262
- 'Annual Consolidated OAG 2018'],
263
- 'Local Government': ['Alebtong District Local Government 2023',
264
- 'Amuru District Local Government 2023',
265
- 'Apac District Local Government 2023',
266
- 'Budaka District Local Government 2023',
267
- 'Bugiri District Local Government 2022',
268
- 'Bugweri District Local Government 2022',
269
- 'Buhweju District Local Government 2023',
270
- 'Bukomansimbi District Local Government 2022',
271
- 'Bukwo District Local Government 2023',
272
- 'Bulambuli District Local Government 2023',
273
- 'Buliisa District Local Government 2023',
274
- 'Bundibugyo District Local Government 2023',
275
- 'Bunyangabu District Local Government 2023',
276
- 'Busia District Local Government 2023',
277
- 'Butambala District Local Government 2023',
278
- 'Buyende District Local Government 2022',
279
- 'Gomba District Local Government 2022',
280
- 'Gulu District Local Government 2018',
281
- 'Gulu District Local Government 2019',
282
- 'Gulu District Local Government 2020',
283
- 'Gulu District Local Government 2021',
284
- 'Gulu District Local Government 2022',
285
- 'Gulu District Local Government 2023',
286
- 'Hoima District Local Government 2023',
287
- 'Ibanda District Local Government 2023',
288
- 'Iganga District Local Government 2022',
289
- 'Isingiro District Local Government 2023',
290
- 'Kaabong District Local Government 2023',
291
- 'Kabale District Local Government 2023',
292
- 'Kabarole District Local Government 2023',
293
- 'Kaberamaido District Local Government 2022',
294
- 'Kalaki District Local Government 2023',
295
- 'Kalangala District Local Government 2018',
296
- 'Kalangala District Local Government 2019',
297
- 'Kalangala District Local Government 2020',
298
- 'Kalangala District Local Government 2021',
299
- 'Kalangala District Local Government 2022',
300
- 'Kalungu District Local Government 2022',
301
- 'Kamuli District Local Government 2022',
302
- 'Kamwenge District Local Government 2023',
303
- 'Kanungu District Local Government 2023',
304
- 'Kapchorwa District Local Government 2023',
305
- 'Kasese District Local Government 2023',
306
- 'Kasese Municipal Council 2023',
307
- 'Kassanda District Local Government 2023',
308
- 'Katakwi District Local Government 2023',
309
- 'Kazo District Local Government 2023',
310
- 'KCCA 2018',
311
- 'KCCA 2019',
312
- 'KCCA 2020',
313
- 'KCCA 2021',
314
- 'KCCA 2022',
315
- 'Kibaale District Local Government 2023',
316
- 'Kiboga District Local Government 2023',
317
- 'Kibuku District Local Government 2023',
318
- 'Kikuube District Local Government 2023',
319
- 'Kiruhura District Local Government 2023',
320
- 'Kiryandongo District Local Government 2023',
321
- 'Kisoro District Local Government 2023',
322
- 'Kitagwenda District Local Government 2023',
323
- 'Kitgum District Local Government 2023',
324
- 'Kole District Local Government 2023',
325
- 'Kwania District Local Government 2023',
326
- 'Kween District Local Government 2023',
327
- 'Kyankwanzi District Local Government 2023',
328
- 'Kyegegwa District Local Government 2023',
329
- 'Kyenjojo District Local Government 2023',
330
- 'Kyotera District Local Government 2023',
331
- 'Lamwo District Local Government 2023',
332
- 'Lira District Local Government 2023',
333
- 'Luuka District Local Government 2022',
334
- 'Lwengo District Local Government 2022',
335
- 'Lyantonde District Local Government 2022',
336
- 'Manafwa District Local Government 2023',
337
- 'Masaka District Local Government 2022',
338
- 'Masindi District Local Government 2023',
339
- 'Mayuge District Local Government 2022',
340
- 'Mbale District Local Government 2023',
341
- 'Mbarara District Local Government 2023',
342
- 'Mitooma District Local Government 2023',
343
- 'Moyo District Local Government 2023',
344
- 'Mubende District Local Government 2022',
345
- 'Nakaseke District Local Government 2023',
346
- 'Namayingo District Local Government 2022',
347
- 'Namutumba District Local Government 2022',
348
- 'Napak District Local Government 2023',
349
- 'Ntoroko District Local Government 2023',
350
- 'Ntungamo District Local Government 2023',
351
- 'Nwoya District Local Government 2023',
352
- 'Obongi District Local Government 2023',
353
- 'Omoro District Local Government 2023',
354
- 'Pallisa District Local Government 2023',
355
- 'Rakai District Local Government 2022',
356
- 'Rubanda District Local Government 2023',
357
- 'Rubirizi District Local Government 2023',
358
- 'Rukiga District Local Government 2023',
359
- 'Rukungiri District Local Government 2023',
360
- 'Rwampara District Local Government ,2023',
361
- 'Sheema District Local Government 2023',
362
- 'Sironko District Local Government 2023',
363
- 'Terego District Local Government 2023',
364
- 'Tororo District Local Government 2023',
365
- 'Bugiri District Local Government 2023',
366
- 'Bugweri District Local Government 2023',
367
- 'Bukomansimbi District Local Government 2023',
368
- 'Buyende District Local Government 2023',
369
- 'Gomba District Local Government 2023',
370
- 'Iganga District Local Government 2023',
371
- 'Kaberamiado District Local Government 2023',
372
- 'Kalangala District Local Government 2023',
373
- 'Kalungu District Local Government 2023',
374
- 'Kamuli District Local Governmnent 2023',
375
- 'Koboko District Local Government 2023',
376
- 'Luuka District Local Government 2023',
377
- 'Lwengo District Local Government 2023',
378
- 'Lyantonde District Local Government 2023',
379
- 'Madi Okollo District Local Government 2023',
380
- 'Maracha District Local Government 2023',
381
- 'Masaka District Local Government 2023',
382
- 'Mayuge District Local Government 2023',
383
- 'Mubende District Local Government 2023',
384
- 'Namayingo District Local Government 2023',
385
- 'Namisindwa District Local Government 2023',
386
- 'Namutumba District Local Government 2023',
387
- 'Napak District Local Government 2023',
388
- 'Nebbi District Local Government 2023',
389
- 'Ntoroko District Local Government 2023',
390
- 'Packwach District Local Government 2023',
391
- 'Pader District Local Government 2023',
392
- 'Rakai District Local Government 2023',
393
- 'Yumbe District Local Government 2023',
394
- 'Zombo District Local Government 2023'],
395
- 'Ministry, Department and Agency': ['Ministry of Agriculture, Animal Industry and Fisheries 2019',
396
- 'Ministry of Agriculture, Animal Industry and Fisheries 2021',
397
- 'Ministry of Agriculture, Animal Industry and Fisheries 2022',
398
- 'Ministry of Defence and Veteran Affairs (MoDVA) 2023',
399
- 'Ministry of Health 2023',
400
- 'Ministry of Internal Affairs 2023',
401
- 'Ministry of Justice and Constitutional Affairs 2023',
402
- 'Ministry of Lands, Housing and Urban Development (MOLHUD) 2023',
403
- 'Ministry of Works and Transport (MoWT) 2021',
404
- 'Ministry of Works and Transport (MoWT) 2022',
405
- 'Ministry of Works and Transport (MoWT) 2019',
406
- 'Ministry of Works and Transport (MoWT) 2020',
407
- 'National Animal Genetic Resource Centre and Data Bank 2023',
408
- 'Office of the President 2023',
409
- 'Uganda Coffee Development Authority (UCDA) 2023',
410
- 'Uganda Cotton Development Organization 2023',
411
- 'Uganda Country Coordinating Mechanism (UCCM) 2022',
412
- 'Uganda Police Force 2023',
413
- 'Uganda Prisons Service (UPS) 2023',
414
- 'Uganda Registration Services Bureau - Liquidation 2023',
415
- 'Ministry of Agriculture, Animal Industry and Fisheries 2020',
416
- 'Ministry of Local Government (MoLG) 2023',
417
- 'Ministry of Works and Transport (MoWT) 2023',
418
- 'Uganda Civil Aviation Authority (UCAA) 2023',
419
- 'Uganda National Roads Authority (UNRA) 2023',
420
- 'Uganda Railway Corporation (URC) 2023',
421
- 'Uganda Road Fund (URF) 2023'],
422
- 'Project':['Agriculture Cluster Development Project IDA Credit 56110-UG 2023',
423
- 'Agriculture Value Chain Development Project (AVCDP) 2023',
424
- 'Albertine Region Sustainable Development Project (ARSDP) 2023',
425
- 'East Africas Centers of Excellence for Skills and Tertiary Education in Biomedical Sciences Phase1 2023',
426
- 'GAVI the Vaccine Alliance Health Systems Strengthening Coverage & Equity 2023',
427
- 'GAVI the Vaccine Alliance COVID-19 Vaccine Delivery Support Early Access Window 2023',
428
- 'National Oil Palm Project (NOPP) IFAD 2023',
429
- 'Uganda Spain Debt SWAP (USDP) 2023',
430
- 'GAVI the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023'],
431
- 'Hospital':['Entebbe Regional Referral Hospital 2023',
432
- 'Gulu Regional Referral Hospital 2023',
433
- 'Kawempe National Referral Hospital 2023',
434
- 'Kiruddu National Referral Hospital 2023',
435
- 'Lira Regional Referral Hospital 2023',
436
- 'Masaka Regional Referral Hospital 2022',
437
- 'Mbale Regional Referral Hospital 2023',
438
- 'Mbarara Regional Referral Hospital 2023',
439
- 'Moroto Regional Referral Hospital 2023',
440
- 'Mubende Regional Referral Hospital 2022',
441
- 'Mulago National Referral Hospital 2023',
442
- 'Mulago Specialized Women and Neonatal Hospital 2023',
443
- 'Soroti Regional Referral Hospital 2023',
444
- 'Masaka Regional Referral Hospital 2023',
445
- 'Mubende Regional Referral Hospital 2023'],
446
- 'Thematic': ['Bugdet Performance Thematic Report 2023',
447
- 'Parish Development Model Thematic Report 2023',
448
- 'Public Financial Management System Thematic Report 2023'],
449
- 'Value for Money': ['Sample of Selected Urban Infrastructure Projects implemented by Gulu City Council 2021',
450
- 'Delivery of Universal Primary Education Value for money Audit Report 2023',
451
- 'Education Services for Learners with Special Needs Value for money Audit Report 2023']}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
auditqa/retriever.py DELETED
@@ -1,56 +0,0 @@
1
- from qdrant_client.http import models as rest
2
- from auditqa.process_chunks import getconfig
3
- from langchain.retrievers import ContextualCompressionRetriever
4
- from langchain.retrievers.document_compressors import CrossEncoderReranker
5
- from langchain_community.cross_encoders import HuggingFaceCrossEncoder
6
-
7
- model_config = getconfig("model_params.cfg")
8
-
9
- def create_filter(reports:list = [],sources:str =None,
10
- subtype:str =None,year:str =None):
11
- if len(reports) == 0:
12
- print("defining filter for sources:{},subtype:{}".format(sources,subtype))
13
- filter=rest.Filter(
14
- must=[rest.FieldCondition(
15
- key="metadata.source",
16
- match=rest.MatchValue(value=sources)
17
- ),
18
- rest.FieldCondition(
19
- key="metadata.filename",
20
- match=rest.MatchAny(any=subtype)
21
- ),
22
- #rest.FieldCondition(
23
- # key="metadata.year",
24
- # match=rest.MatchAny(any=year)
25
- ])
26
- else:
27
- print("defining filter for allreports:",reports)
28
- filter=rest.Filter(
29
- must=[
30
- rest.FieldCondition(
31
- key="metadata.filename",
32
- match=rest.MatchAny(any=reports)
33
- )])
34
-
35
- return filter
36
-
37
-
38
- def get_context(vectorstore,query,reports,sources,subtype):
39
- # create metadata filter
40
- filter = create_filter(reports=reports,sources=sources,subtype=subtype)
41
-
42
- # getting context
43
- retriever = vectorstore.as_retriever(search_type="similarity_score_threshold",
44
- search_kwargs={"score_threshold": 0.4,
45
- "k": int(model_config.get('retriever','TOP_K')),
46
- "filter":filter})
47
- # re-ranking the retrieved results
48
- model = HuggingFaceCrossEncoder(model_name=model_config.get('ranker','MODEL'))
49
- compressor = CrossEncoderReranker(model=model, top_n=int(model_config.get('ranker','TOP_K')))
50
- compression_retriever = ContextualCompressionRetriever(
51
- base_compressor=compressor, base_retriever=retriever
52
- )
53
- context_retrieved = compression_retriever.invoke(query)
54
- print(f"retrieved paragraphs:{len(context_retrieved)}")
55
-
56
- return context_retrieved
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
auditqa/sample_questions.py DELETED
@@ -1,59 +0,0 @@
1
-
2
- OLD_QUESTIONS = {
3
- "MoWT Related Questions": [
4
- "Has construction or maintenance of community access roads done?",
5
- "What are the challenges with compensations by the Standard Gauge Railway (SGR) Project?",
6
- "What was the revenue performance of the ministry in 2019, and what accounts for this performance?"
7
- "What are the challenges related to land compensation in the ministry?",
8
- "How much was mischarged in expenditure within the ministry for 2022?",
9
- "What are the recurring audit issues in the ministry over the last five years?",],
10
- "MAAIF Related Questions":["What are the challenges in managing court awards and compensations?",
11
- "What are the key issues in asset management within the ministry?",
12
- "How much has the ministry lost due to mischarges/diversion of funds over the last five years?",
13
- "What are the striking issues in the management of public land in the district?",
14
- "What are the recurring audit issues in the ministry over the last five years?",],
15
-
16
- "Kampala Related Questions":["How much was budgeted and released for Project 1253 Kampala Road Rehabilitation, and what were the audit findings in 2018?",
17
- "What has been the trend of domestic arrears in the district over the last five years, and what explains this trend?",
18
- "What were the audit findings on nugatory expenditure due to interest on delayed payments in 2020?",
19
- "What are the salient challenges with compliance with legislation in the district over the last five years?",
20
- "What are the challenges in the management of pension and gratuity in KCCA?", ],
21
-
22
- "Kalangala Related Questions":["What has been the trend of local revenue performance in the district over the last five years?",
23
- "What are the challenges of managing PDM activities in the district?",
24
- "How much was lost in 2021 due to the payment of salaries using incorrect scales?",
25
- "How much was lost in 2021 due to the use of incorrect budget and expenditure codes?",
26
- "What are the salient procurement issues in the district over the last five years?",],
27
-
28
- "Gulu Related Questions":["What were the audit findings for the construction of the Low-Cost Sealing of Laroo-Pageya Road 1 Km from the June 2018 audit report?",
29
- "How much local revenue was collected in FY2019/2020?",
30
- "What are the challenges related to the management of public land in the district over the last five years?",
31
- "What is the trend of Gulu’s budget performance over the last five years; budgeted, released, and utilized?",
32
- "What are the challenges with the district payroll management?",],
33
- "Consolidated Report Related Question":["What has been the trend of Uganda’s domestic arrears from FY2018/2019 to FY2022/2023?",
34
- "Which votes registered the biggest arrears?",
35
- "What problems are associated with high domestic arrears?",
36
- "Trend of Uganda’s Domestic Debt Stock and Debt to GDP Ratio (FY2018/2019 to FY2022/2023)",
37
- "What has been the trend of Uganda’s domestic debt stock and Debt to GDP ratio from FY2018/2019 to FY2022/2023?",
38
- "How much is Uganda’s external debt as of June 2022?",
39
- "What are the challenges associated with Uganda’s debt state and how can these challenges be addressed?",
40
- "Challenges with the Government Salary Payroll (Last Five Years)",
41
- "What are the salient challenges with the government salary payroll in the last five years?",
42
- "How much has been lost due to mismanagement of the government salary payroll over the last five years?",
43
- "What are the key findings of the Value for Money Audit on the delivery of Universal Primary Education in Uganda conducted in 2022?",
44
- "How much was lost due to the mischarge of expenditure and unaccounted-for advances in 2019 audit report?",]}
45
- QUESTIONS = {"Sample Questions for any individual report": ["What are the key findings of this audit report?",
46
- "What were the most significant areas of non-compliance in this audit?",
47
- "Did this audit highlight any issues with financial management or budgeting?",
48
- "Were there any procurement or contract management concerns raised in this audit?",
49
- "What recommendations were made to improve the performance of the entity audited?",
50
- "What risks were identified in this audit?",
51
- "Were there any cases of fraud, misappropriation, embezzlement or misuse of public resources detected in this audit?",
52
- "How well did the audited entity adhere to its financial and operational targets?",
53
- "What were the main internal control weaknesses identified in this audit?",
54
- "What actions or follow-up steps are recommended based on the audit findings?",
55
- "What are the recurring audit issues identified in this audit report?"],
56
- "Exploratory Questions":["What are the common audit issues identified across various sectors, entities, or programs?",
57
- "Which entities had a qualified audit opinion and what was the basis of the opinion?",
58
- "What were the key value-for-money audit findings?",
59
- "What are the main revenue losses or areas where the government is losing money?"]}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
auditqa/utils.py DELETED
@@ -1,190 +0,0 @@
1
- import re
2
- import logging
3
- import json
4
- from langchain.schema import (
5
- HumanMessage,
6
- SystemMessage,
7
- )
8
- import requests
9
- from datetime import datetime
10
- from uuid import uuid4
11
- import random
12
-
13
- def save_logs(scheduler, JSON_DATASET_PATH, logs, feedback=None) -> None:
14
- """ Every interaction with app saves the log of question and answer,
15
- this is to get the usage statistics of app and evaluate model performances
16
- """
17
- try:
18
- # We get the timestamp here now because we are simply recording time of logging
19
- current_time = datetime.now().timestamp()
20
- logs["time"] = str(current_time)
21
-
22
- # Save feedback (if any)
23
- if feedback:
24
- logs["feedback"] = feedback
25
- logs["record_id"] = str(uuid4())
26
-
27
- # Do some reordering to keep things clean (time up front)
28
- field_order = [
29
- "record_id",
30
- "session_id",
31
- "time", # current log time
32
- "session_duration_seconds",
33
- "client_location",
34
- "platform",
35
- "system_prompt",
36
- "sources",
37
- "reports",
38
- "subtype",
39
- "year",
40
- "question",
41
- "retriever",
42
- "endpoint_type",
43
- "reader",
44
- "docs",
45
- "answer",
46
- "feedback"
47
- ]
48
- ordered_logs = {k: logs.get(k) for k in field_order if k in logs}
49
-
50
- with scheduler.lock:
51
- with open(JSON_DATASET_PATH, 'a') as f:
52
- json.dump(ordered_logs, f)
53
- f.write("\n")
54
- logging.info("logging done")
55
- except Exception as e:
56
- raise
57
-
58
-
59
- def get_message_template(type, SYSTEM_PROMPT, USER_PROMPT):
60
- if type == 'NVIDIA':
61
- messages = [{"role": "system", "content": SYSTEM_PROMPT},
62
- {"role":"user","content":USER_PROMPT}]
63
- elif type == 'DEDICATED':
64
- messages = [
65
- SystemMessage(content=SYSTEM_PROMPT),
66
- HumanMessage(content=USER_PROMPT),]
67
- elif type == 'SERVERLESS':
68
- messages = [
69
- SystemMessage(content=SYSTEM_PROMPT),
70
- HumanMessage(content=USER_PROMPT),]
71
- elif type == 'INF_PROVIDERS':
72
- messages = [{"role": "system", "content": SYSTEM_PROMPT},
73
- {"role":"user","content":USER_PROMPT}]
74
- else:
75
- logging.error("No message template found")
76
- raise
77
-
78
- return messages
79
-
80
-
81
- def make_html_source(source,i):
82
- """
83
- takes the text and converts it into html format for display in "source" side tab
84
- """
85
- meta = source.metadata
86
- content = source.page_content.strip()
87
-
88
- name = meta['filename']
89
- card = f"""
90
- <div class="card" id="doc{i}">
91
- <div class="card-content">
92
- <h2>Doc {i} - {meta['filename']} - Page {int(meta['page'])}</h2>
93
- <p>{content}</p>
94
- </div>
95
- <div class="card-footer">
96
- <span>{name}</span>
97
- <a href="{meta['filename']}#page={int(meta['page'])}" target="_blank" class="pdf-link">
98
- <span role="img" aria-label="Open PDF">🔗</span>
99
- </a>
100
- </div>
101
- </div>
102
- """
103
-
104
- return card
105
-
106
-
107
- def parse_output_llm_with_sources(output):
108
- # Split the content into a list of text and "[Doc X]" references
109
- content_parts = re.split(r'\[(Doc\s?\d+(?:,\s?Doc\s?\d+)*)\]', output)
110
- parts = []
111
- for part in content_parts:
112
- if part.startswith("Doc"):
113
- subparts = part.split(",")
114
- subparts = [subpart.lower().replace("doc","").strip() for subpart in subparts]
115
- subparts = [f"""<a href="#doc{subpart}" class="a-doc-ref" target="_self"><span class='doc-ref'><sup>{subpart}</sup></span></a>""" for subpart in subparts]
116
- parts.append("".join(subparts))
117
- else:
118
- parts.append(part)
119
- content_parts = "".join(parts)
120
- return content_parts
121
-
122
-
123
- def get_client_ip(request=None):
124
- """Get the client IP address from the request context"""
125
- try:
126
- if request:
127
- # Try different headers that might contain the real IP
128
- ip = request.client.host
129
- # Check for proxy headers
130
- forwarded_for = request.headers.get('X-Forwarded-For')
131
- if forwarded_for:
132
- # X-Forwarded-For can contain multiple IPs - first one is the client
133
- ip = forwarded_for.split(',')[0].strip()
134
-
135
- logging.debug(f"Client IP detected: {ip}")
136
- return ip
137
- except Exception as e:
138
- logging.error(f"Error getting client IP: {e}")
139
- return "127.0.0.1"
140
-
141
-
142
- def get_client_location(ip_address) -> dict | None:
143
- """Get geolocation info using ipapi.co"""
144
- # Add headers so we don't get blocked...
145
- headers = {
146
- 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'
147
- }
148
- try:
149
- response = requests.get(
150
- f'https://ipapi.co/{ip_address}/json/',
151
- headers=headers,
152
- timeout=5
153
- )
154
- if response.status_code == 200:
155
- data = response.json()
156
- # Add random noise between -0.01 and 0.01 degrees (roughly ±1km)
157
- lat = data.get('latitude')
158
- lon = data.get('longitude')
159
- if lat is not None and lon is not None:
160
- lat += random.uniform(-0.01, 0.01)
161
- lon += random.uniform(-0.01, 0.01)
162
-
163
- return {
164
- 'city': data.get('city'),
165
- 'region': data.get('region'),
166
- 'country': data.get('country_name'),
167
- 'latitude': lat,
168
- 'longitude': lon
169
- }
170
- elif response.status_code == 429:
171
- logging.warning(f"Rate limit exceeded. Response: {response.text}")
172
- return None
173
- else:
174
- logging.error(f"Error: Status code {response.status_code}. Response: {response.text}")
175
- return None
176
-
177
- except requests.exceptions.RequestException as e:
178
- logging.error(f"Request failed: {str(e)}")
179
- return None
180
-
181
-
182
- def get_platform_info(user_agent: str) -> str:
183
- """Get platform info"""
184
- # Make a best guess at the device type
185
- if any(mobile_keyword in user_agent.lower() for mobile_keyword in ['mobile', 'android', 'iphone', 'ipad', 'ipod']):
186
- platform_info = 'mobile'
187
- else:
188
- platform_info = 'desktop'
189
-
190
- return platform_info
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
reports/Annual Consolidated OAG audit reports 2018/Annual Consolidated OAG audit reports 2018.chunks.json DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2018/Annual Consolidated OAG audit reports 2018.md DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2018/Annual Consolidated OAG audit reports 2018.pdf DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e84138dbc5d1d543099a3524d47f2b1b29aa4eb4cbe89e45190823b46cdb9761
3
- size 10161785
 
 
 
 
reports/Annual Consolidated OAG audit reports 2018/Annual Consolidated OAG audit reports 2018.txt DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2019/Annual Consolidated OAG audit reports 2019.chunks.json DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2019/Annual Consolidated OAG audit reports 2019.md DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2019/Annual Consolidated OAG audit reports 2019.pdf DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:00d6d3e05a289d0ecb97fcbaa6b22753b01bbad5e58d345127bf47f5247bc24a
3
- size 34419001
 
 
 
 
reports/Annual Consolidated OAG audit reports 2019/Annual Consolidated OAG audit reports 2019.txt DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2020/Annual Consolidated OAG audit reports 2020.chunks.json DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2020/Annual Consolidated OAG audit reports 2020.md DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2020/Annual Consolidated OAG audit reports 2020.pdf DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f11d4e6fcc557f892143bd6ccde14d7999d798173e8b0a76d715f540afe545cb
3
- size 27321569
 
 
 
 
reports/Annual Consolidated OAG audit reports 2020/Annual Consolidated OAG audit reports 2020.txt DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2021/Annual Consolidated OAG audit reports 2021.chunks.json DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2021/Annual Consolidated OAG audit reports 2021.md DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2021/Annual Consolidated OAG audit reports 2021.pdf DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:615763325adbc2eed01f4dcf78868feb76c5c3f9cad97536d566ec4e8436aa9c
3
- size 11569659
 
 
 
 
reports/Annual Consolidated OAG audit reports 2021/Annual Consolidated OAG audit reports 2021.txt DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2022/Annual Consolidated OAG audit reports 2022.chunks.json DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2022/Annual Consolidated OAG audit reports 2022.md DELETED
The diff for this file is too large to render. See raw diff
 
reports/Annual Consolidated OAG audit reports 2022/Annual Consolidated OAG audit reports 2022.pdf DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7633531ab42f47889c7901c69d1721d1d38d321570378693d2f6b753aecadec1
3
- size 10705735
 
 
 
 
reports/Annual Consolidated OAG audit reports 2022/Annual Consolidated OAG audit reports 2022.txt DELETED
The diff for this file is too large to render. See raw diff
 
reports/Gulu DLG Report of Auditor General 2018/Gulu DLG Report of Auditor General 2018.chunks.json DELETED
The diff for this file is too large to render. See raw diff
 
reports/Gulu DLG Report of Auditor General 2018/Gulu DLG Report of Auditor General 2018.md DELETED
@@ -1,860 +0,0 @@
1
- OFFICE OF THE AUDITOR GENERAL
2
- THE REPUBLIC OF UGANDA
3
- OFFICE OF THE AUDITOR GENERAL
4
- UGANDA
5
-
6
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0615.jpg)
7
-
8
- # REPORT OF THE AUDITOR GENERAL ON THE FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
9
-
10
- **FOR THE YEAR ENDED 30 TH JUNE 2018**
11
-
12
- ---
13
-
14
- # TABLE OF CONTENTS
15
-
16
- Page
17
-
18
- Opinion - 4
19
- Key Audit Matters - 5
20
- 1.0 Performance of Youth Livelihood programme - 5
21
- 1.1 Funding of the Programme - 6
22
- 1.2 Non-compliance with the Repayment Schedule - 6
23
- 1.3 Failure to transfer recovered funds to the recovery account in BOU - 7
24
- 1.4 Inspection of Performance of Youth projects - 7
25
- 2.0 Implementation of the Uganda road Funds - 7
26
- 2.1 Budget Performance - 8
27
- 2.2 Status of Implementation - 9
28
- 2.2.1 Routine Manual Maintenance - 9
29
- 2.2.2 Routine mechanized maintenance - 9
30
- 2.2.3 Periodic Maintenance - 9
31
- 3.0 Contingent Liability - 10
32
- 4.0 Unpaid Pension and Gratuity Arrears - 10
33
- 5.0 Payables - 10
34
- 6.0 Incomplete and abandoned works - 11
35
- Incomplete renovation and expansion of OPD in Lugore HCII Palaro Sub 6.1
36
- County - 11
37
- 6.2 Incomplete/Abandoned Low Cost Sealing of Laroo - Pageya Road 2 Km - 12
38
- 7.0 Non-Disbursement of YLP funds for financial year 2017/18 - 13
39
- 8.0 Non-Assessment of Taxable Revenue - 14
40
- Summary of exceptions raised in the PPDA audit report of the district for the 9.0
41
- financial year ended 30 th June, 2018 - 14
42
- Other Information - 14
43
- REPORT ON THE AUDIT OF COMPLIANCE WITH LEGISLATION - 17
44
- 10.0 Management of Natural Resources - 17
45
- 10.1 Unlicensed Activities on Natural resources - 17
46
- 11.0 Establishment of the Physical Planning Committee - 18
47
- 11.1 Performance of the Physical Planning Committee - 18
48
-
49
- ---
50
-
51
- 11.2 Non Budgeting for the Physical Planning Committee Activities - 19
52
- 12.0 Management of Road Equipment - 19
53
- 12.1 Failure to maintain road equipment records - 19
54
- 12.2 Non-functional/ Grounded Equipment - 20
55
- 13.0 Status of Basic Medical Equipment - 21
56
- 13.1 Failure to record medical equipment in the district assets register - 21
57
- 14.0 Missing Procurement Records - 21
58
- Appendix I: Noncompliance with the repayment schedule - 23
59
- Appendix II: Evaluation of Planned Output Uganda Road Fund Budget (URF) - 27
60
- Appendix III: Non- disbursement of Youth funds for FY 2017-18 - 31
61
- Appendix IV: PPDA Procurement Audit Findings - 32
62
- Appendix V: Status of Medical Equipment in Awach HC IV - 40
63
- Appendix VI: Missing records on Procurement Action files - 41
64
-
65
- ---
66
-
67
- | **Acronym** | **Meaning** |
68
- |---|---|
69
- | BOU | Bank of Uganda |
70
- | DLG | District Local Government |
71
- | DMO | District Medical Officer |
72
- | DRC | District Road Committee |
73
- | EMHS | Essential Medicines and Health Supplies |
74
- | HC IV | Health Center Four |
75
- | ICT | Information Communication Technology |
76
- | IESBA | International Ethics Standards Board for Accountants |
77
- | INTOSAI | International Organization of Supreme Audit Institutions |
78
- | ISSAI | International Standards of Supreme Audit Institution |
79
- | LGFAM | Local Governments Financial and Accounting Manual 2007 |
80
- | LGFAR | Local Governments Financial and Accounting Regulations 2007 |
81
- | MMHS | Management of Medicines Health Supply |
82
- | MoESTS | Ministry of Education Science and Technology and Sports |
83
- | MoFPED | Ministry of Finance Planning and Economic Development |
84
- | NMS | National Medical Stores |
85
- | PFMA | Public Finance Management Act 2015 |
86
- | PPDA | Public Procurement and Disposal of Assets |
87
- | **RTI** | Rural Transport Infrustructure |
88
- | UGX | Uganda Shillings |
89
- | UPE | Universal Primary Education |
90
- | URA | Uganda Revenue Authority |
91
- | URF | Uganda Road Fund |
92
- | VAT | Value Added Tax |
93
- | WHT | Withholding Tax |
94
- | YIGs | Youth Intrest Groups |
95
- | YLP | Youth Livelihood Programme |
96
-
97
-
98
- ---
99
-
100
- # REPORT OF THE AUDITOR GENERAL ON THE AUDIT OF FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
101
-
102
- **FOR THE YEAR ENDED 30 TH JUNE, 2018**
103
-
104
- # THE RT. HON. SPEAKER OF PARLIAMENT
105
-
106
- # Opinion
107
-
108
- I have audited the accompanying financial statements of Gulu District Local Government which comprise the statement of Financial Position as at 30 th June 2018, and
109
- the Statement of Financial Performance, Statement of Changes in Equity and Statement of Cash Flows together with other accompanying statements for the year then ended, and notes to the financial statements ,including a summary of significant accounting policies .
110
-
111
- In my opinion, the financial statements of Gulu district local government for the year ended 30 th June 2018 are prepared, in all material respects, in accordance with section 51 of the Public Finance Management, 2015 and the Local Government Financial and Accounting Manual, 2007.
112
-
113
- # Basis for Opinion
114
-
115
- I conducted my audit in accordance with International Standards of Supreme Audit Institutions (ISSAIs). My responsibilities under those standards are further described in the Auditor’s Responsibilities for the Audit of the Financial Statements section of my report. I am independent of the District in accordance with the Constitution of the Republic of Uganda (1995) as amended, the National Audit Act, 2008, the International Organization of Supreme Audit Institutions (INTOSAI) Code of Ethics, the International Ethics Standards Board for Accountants Code of Ethics for Professional Accountants (Parts A and B) (IESBA Code), and other independence requirements applicable to performing audits of Financial Statements in Uganda. I have fulfilled my other ethical responsibilities in accordance with the IESBA Code, and in accordance with other ethical requirements applicable to performing audits in Uganda. I believe that the audit evidence I have obtained is sufficient and appropriate to provide a basis for my opinion.
116
-
117
- ---
118
-
119
- # Key Audit Matters
120
-
121
- Key audit matters are those matters that, in my professional judgment, were of most significance in my audit of the financial statements of the current period. These matters were addressed in the context of my audit of the financial statements as a whole, and in forming my opinion thereon, and I do not provide a separate opinion on these matters.
122
-
123
- I have determined the matters described below as the key communicated in my report.
124
-
125
- **1.0**
126
-
127
- # Performance of Youth Livelihood programme
128
-
129
- audit matters to be
130
-
131
- The Youth Livelihood Programme (YLP) is a Government Programme being imple- mented under the Ministry of Gender, Labour and Social Development (MoGLSD). The programme, which started in the financial year 2014-2015, was to respond to the existing challenge of unemployment among the Youths.
132
-
133
- The programme, which is implemented through the District provides support to the vulnerable youth in form of revolving funds for skills development projects and income generating activities initiated by youth groups.
134
-
135
- The audit focused on an amount of UGX.372, 635,500 disbursed in the Financial Year; 2014/2015 whose recovery period of three years had expired by 30 th June
136
-
137
- 2018. The audit procedures performed focused on ascertaining the following;
138
-
139
- - Whether all funds budgeted for YLP during the period under review were actually released and used only for the program.
140
- - Whether all funds advanced to the youth groups were repaid in accordance with the agreed repayment schedule and to establish reasons for failure or delays to repay the funds.
141
- - Whether all funds recovered during the period under review were transferred to the revolving fund account in Bank of Uganda to be disbursed to other Youth Livelihood Groups (YLGs) in accordance with the revolving funding model and
142
- - Whether on a sample basis the funded projects do exist and are operating.
143
-
144
- ---
145
-
146
- **1.1**
147
-
148
- # Funding of the Programme.
149
-
150
- A review of the approved budget
151
- for the YLP program revealed that whereas the District had budgeted for a total amount of UGX.389,197,196 for the financial year 2014/2015, only UGX.372,635,500 (96%) was released resulting in a shortfall of UGX.16,561,696 (4%). Consequently, out of the planned 53 projects/youth interest groups, only 51 were actually funded.
152
-
153
- This undermined the intended objective of responding to the challenge of unemploy- ment amongst the Youths. In his response the Accounting Officer through the district YLP focal point person explained that they wrote to the Ministry of Gender, Labour and Social Development expressing concern for the budget cuts.
154
-
155
- I advised the Accounting Officer to engage all the relevant authorities to ensure that adequate resources are allocated to the program so as to attain the programme objectives.
156
-
157
- **1.2**
158
-
159
- # Non-compliance with the Repayment Schedule
160
-
161
- The Documentation review revealed the repayment was not in line with the agreed repayment schedules. It was observed that whereas the groups funded in 2014/2015 were expected to have repaid a total amount of UGX.372,635,500 by close of the financial year 2017/2018, only UGX.90,844,850 (24%) was collected leaving a balance of UGX.281,790,650 (76%) outstanding as shown in **appendix I**
162
-
163
- Failure to repay in a timely manner implies that other eligible groups were unable to access the funds since this is a revolving fund.
164
-
165
- ---
166
-
167
- **1.3**
168
-
169
- # Failure to transfer recovered funds to the recovery account in BOU.
170
-
171
- A review of the bank statements of the YLP Recovery account No. 07547680004 in Bank of Africa, revealed that all the collected amount of UGX.90,844,850, had been transferred to the National Revolving Fund Collection Account by the end of the financial year 2017/18.
172
-
173
- This undermines the effective implementation of the program and the ultimate goal of creating employment for the youth. The Accounting Officer stated that he was in the process of transferring the funds to the National Revolving Fund Collection Account.
174
-
175
- I advised the Accounting Officer to ensure that recovered funds are always promptly transferred to the recovery Account in Bank of Uganda.
176
-
177
- **1.4**
178
- **Inspection of Performance of Youth projects**
179
- Physical inspection was carried out on two selected projects namely Oroko Wapwoyo Luluta Produce buying and selling Group and Adak Alliance Piggery Project to ascertain whether they were in existence and executed in accordance with the operational guidelines. It was observed that the groups had disintegrated. Lack of monitoring/supervision led to disintegration of groups and poor recovery.
180
-
181
- The Accounting Officer explained that efforts had been put in place to involve grass root leaders (LCI, LCII, Parish Chiefs, PISO, GISO, Sub County Chiefs) , to improve in monitoring and supervision and mobilize the youth groups for timely recovery.
182
-
183
- I advised the Accounting Officer to enhance mobilization and monitoring for effective programme implementation.
184
-
185
- ---
186
-
187
- year and during implementation, effort to be made to achieve the agreed objectives or targets as per the programme of Council.
188
-
189
- It has been observed over years that planned and budgeted for activities of a number of Local Governments are not implemented thereby affecting service delivery.
190
-
191
- During the overall office wide planning, I identified risks such as inadequate release of funds and failure to undertake budget monitoring and supervision that are likely to be the causes of failure to implement the planned activities under Uganda road fund. The focus was put on the planned major outputs under Uganda Road Fund
192
- which greatly impact on service delivery in the Local Governments.
193
-
194
- Consequently, I developed specific audit procedures which included to ascertain whether;
195
-
196
- - The budgeted URF releases for Local Governments for the year under review were actually received ;
197
- - The planned URF outputs were achieved;
198
-
199
- Based on the procedures performed, the following observations were made;
200
-
201
- # 2.1 Budget Performance
202
-
203
- A total of UGX.471,595,450 was budgeted to cater for routine manual maintenance, routine mechanised maintenance, periodic maintenance and mechanical imprest activities on several District Roads using Road gangs and the force Account mechanism. However, the district received UGX.470, 118,922(99.7%) resulting into a deficit of UGX.1, 476,528 the deficit constituted 0.3% of the budgeted amount.
204
-
205
- ---
206
-
207
- # 2.2 Status of Implementation
208
-
209
- A review of planned outputs against actual performance is as shown in **appendix II**
210
-
211
- # 2.2.1 Routine Manual Maintenance
212
-
213
- A total of 322.6 kms at an estimated cost of UGX.98, 175,796 was planned to be undertaken. However, audit revealed that 303kms were actually undertaken at a cost of UGX.63,756,444 leading to a shortfall of 19.6km in length and an unspent balance of UGX.17,955,276 (18%).
214
-
215
- On inspection, it was observed that all the planned roads were worked on other than Awac – Paibona Road (19.6Km). The Acting District Engineer explained that the road was in a very poor state that could not be handled by Road Gangs and the District roads committee (DRC) decided to rollover the road to be maintained in F/Y 2018/19 under periodic mechanised maintenance.
216
-
217
- I advised the Accounting Officer to always ensure proper planning to ensure effective service delivery.
218
-
219
- # 2.2.2 Routine mechanized maintenance
220
-
221
- A total of 58.5 kms at an estimated cost of UGX. 229,076,844 was planned to be revealed 59.4 kms were actually undertaken at a cost of coverage of 0.9kms in road length.
222
-
223
- that works were well implemented as shown in
224
-
225
- | undertaken. However, audit UGX. 229,077,320 leading to extra inspection, it was observed pictures below: On |||||
226
- |---|---|---|---|---|
227
- | Section of Negri-Paiminano-Lalem road |^|<| Section of Pageya-Omel road |^|<|
228
-
229
-
230
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0116.jpg)
231
-
232
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0117.jpg)
233
-
234
- ---
235
-
236
- # 3.0 Contingent Liability
237
-
238
- Included in the statement of contingent liabilities and guarantees on page 41 is UGX.6, 000,000,000 relating to damages awarded by court for unlawful dismissal of Parish Chiefs by the district. Consequently, a number of district assets have been auctioned as a result of accumulated domestic arears arising out of court cases.
239
-
240
- The Accounting Officer explained that the negotiations were underway with the relevant stakeholders to have the liability reduced.
241
-
242
- I advised the Accounting Officer to engage the Ministry of Finance Planning And Economic development and the Ministry of Local Government to make a budget provision for clearing the outstanding domestic arrears.
243
-
244
- **4.0**
245
-
246
- # Unpaid Pension and Gratuity Arrears
247
-
248
- Included in the statement of Financial Position on page 15 and note 23 of the financial statements is UGX.697,871,140 in respect of Pension and gratuity Arrears. The accumulation of pension and gratuity arrears exposes challenges to the retired civil servants while delayed settlement of salary arrears demotivates staff. The Accounting Officer explained that UGX.33, 417,443 of the outstanding Arrears had been cleared but in the system, the amount had not yet been offset. He further indicated that the outstanding arrears would be cleared when budget provision is made by MoFPED.
249
-
250
- # 5.0 Payables
251
-
252
- Included in the figure for payables in the statement of Financial Position on page 15 and note 22 on page 34 of the Financial Statements is UGX.1,191,005,956 relating to trade creditors, sundry creditors and withholding tax. Included in the sundry creditors is UGX.266, 421,925 relating to completed NUDEIL projects that remained unpaid pending approval by USAID dating as far back as 2010.
253
- Outstanding obligations expose the district to the risk of litigation and its associated costs.
254
-
255
- ---
256
-
257
- **6.0**
258
-
259
- # Incomplete and abandoned works
260
-
261
- **6.1**
262
-
263
- # Incomplete renovation and expansion of OPD in Lugore HCII Palaro Sub County
264
-
265
- The district signed a contract with M/S Deg Bedo Co Limited for renovation and expansion of OPD in Lugore HCII Palaro Sub County under contract reference no Gulu508/Wrks/17-18/00005 at a contract sum of UGX.47,558,600 with a start and end date of 3 rd May 2018 and 30 th June 2018 respectively.
266
-
267
- However, audit inspection carried out on 24 th October 2018 revealed that the project was incomplete and the contractor had abandoned the site as shown in the pictures below;
268
-
269
- |||
270
- |---|---|
271
- | Abandoned contractor items in one of the incomplete rooms. |<|
272
- | Front view of the OPD | Back view of the OPD |
273
-
274
-
275
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0120.jpg)
276
-
277
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0121.jpg)
278
-
279
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0122.jpg)
280
-
281
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0123.jpg)
282
-
283
- ---
284
-
285
- scope work to fit within the available funds and the outstanding works were rolled over to financial year 2018/2019.
286
-
287
- I advised the Accounting Officer to adequately plan and budget for works to ensure timely service delivery.
288
-
289
- **6.2**
290
-
291
- # Incomplete/Abandoned Low Cost Sealing of Laroo - Pageya Road 2 Km
292
-
293
- The district awarded a contract to Pehan Construction Ltd for Low Cost Sealing of Laroo- Pageya Road 1 Km section at a contract sum of UGX.498,646,112 funded by RTI under procurement reference No Gulu508/wrks/2017-18/00008 with a start and end date of 31 st May 2018 and 30 th June 2018 respectively.
294
-
295
- However, audit inspection conducted on 25 th October 2018 revealed the following lapses;
296
-
297
- - The project was not complete yet its contract end date had long expired with no evidence of contract extension.
298
- - No billboards were raised in respect of the project and no response was obtained to the effect. In this case the roads inspector explained that they were yet to be raise by the contractor.
299
- - Environmental concerns had not been addressed since trees had not been planted along the road as provided for in the Bills of Quantities.
300
- - The main activities that were thoroughly done were bush clearing, road reshaping and road base construction.
301
- - It was noted that the contractor had put primer on some section of the road (0.5Km from Laroo to Pageya) but did not spread/cover it with stone chippings and as a result, the primer had been washed away.
302
- - The actual distance where bush clearing, road reshaping and base construction done was only 0.9Km not 1km as planned.
303
- - The procurement action file and contract management file were not availed and as a result, the contract supervisor could not be identified and interviewed. The amount for design and supervision worth UGX.42, 776,407 had been fully paid yet the contractor had only performed one part of the contract; that is design but supervision had not been fully performed.
304
- - The absence of the contractor on site and evidence of on-going works was a clear indication that the project had been abandoned as seen in the pictures below;
305
-
306
- ---
307
-
308
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0126.jpg)
309
-
310
- Area meant to be sealed along the contracted road
311
-
312
- ## Source:
313
-
314
- ## Field
315
-
316
- ## Inspection on 25/10/2018
317
-
318
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0127.jpg)
319
-
320
- Section of the road where work was partially done
321
-
322
- The delayed completion of works not only leads to waste of government resources but also hampers service delivery to the communities.
323
- The Accounting Officer explained that the contract had been extended for five (05) months to allow the contractor complete the works but no evidence was availed to confirm the extension.
324
-
325
- I advised the Accounting Officer to expedite the process of the project completion for timely service delivery.
326
- **7.0**
327
-
328
- # Non-Disbursement of YLP funds for financial year 2017/18
329
-
330
- Section 2 of the project funds access criteria document states that the YLP Support will be accessed by Youth Groups that will have expressed interest, passed the beneficiary selection criteria, and generated viable projects that are approved by the District Technical Planning Committee.
331
-
332
- It was observed that the 39 th disbursement of UGX.69,515,000 for FY 2017-18 that was released by the Ministry of Gender, Labour and Social Development to the district YLP Account (No.07547680004-Bank of Africa) on 8 th May, 2018 had not been disbursed to the respective approved youth interest groups by the year end and by the time of audit (October 2018) as shown in **Appendix III:**
333
-
334
- ---
335
-
336
- I advised the Accounting Officer to streamline the disbursement process and ensure timely disbursement of funds to the approved groups.
337
-
338
- **8.0**
339
-
340
- # Non-Assessment of Taxable Revenue
341
-
342
- Paragraph 4.3 of Local Government Financial and Accounting Manual 2007 provides that the Chief Executive should carry out proper assessment of the council’s revenue regularly. In order for proper assessment to be carried out, the process should start with the enumeration exercise conducted by a team of enumerators who should record all the sources of income for each individual tax payer in the district.
343
-
344
- It was however observed that there was no evidence that revenue enumeration and assessments were carried out for all revenue sources. This therefore implies that the budgeted local revenue of UGX.606, 755,700 was not informed.
345
-
346
- Consequently, the council was unable to establish and disclose the amount for local revenue billed during the year in the statement of Arrears of revenues accompanying the financial statements.
347
-
348
- The Accounting Officer attributed this to staffing gaps mainly for enumerators (the Parish Chiefs) and low capacity of the enumerators since they were not trained on their roles.
349
-
350
- I advised the Accounting Officer to ensure that proper assessment of revenue sources is regularly carried out to enable fair estimates to be made.
351
-
352
- **9.0** Summary of exceptions raised in the PPDA audit report of the district for** **the financial year ended 30 th June, 2018.**
353
- PPDA carried out a procurement audit and the exceptions are included in **appendix**
354
-
355
- ---
356
-
357
- In connection with my audit of the financial statements, my responsibility is to read the other information and, in doing so, consider whether the other information is materially consistent with the financial statements or my knowledge obtained in the audit, or otherwise appears to be materially misstated. If, based on the work I have performed, I conclude that there is a material misstatement of this other information, I am required to report that fact. I have nothing to report in this regard.
358
-
359
- # Management Responsibilities for the Financial Statements
360
-
361
- Under Article 164 of the Constitution of the Republic of Uganda, 1995 (as amended) and Section 45 of the Public Finance Management Act, 2015, the Accounting Officer is accountable to Parliament for the funds and resources of Gulu District Local Government.
362
-
363
- The Accounting Officer is also responsible for the preparation of financial statements in accordance with the requirements of the Local Governments Financial and Accounting Manual, 2007 and the Public Finance Management Act 2015 and for such internal control as management determines necessary to enable the preparation of financial statements that are free from material misstatement whether due to fraud or error.
364
- In preparing the financial statements, the Accounting Officer is responsible for assessing the District’s ability to continue as a going concern, disclosing, as applicable, matters related to going concern and using the going concern basis of accounting, unless the Accounting Officer has a realistic alternative to the contrary.
365
-
366
- The Accounting Officer is responsible for overseeing the District’s financial reporting process.
367
-
368
- # Auditor General’s Responsibilities for the audit of the Financial Statements
369
-
370
- My objectives are to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error, and to issue an auditor’s report that includes my opinion. Reasonable assurance is a high level of assurance, but is not a guarantee that an audit conducted in accordance with ISSAIs will always detect a material misstatement, when it exists. Misstatements can arise from fraud or error and are considered material if, individually or in aggregate, they could reasonably be expected to influence the economic decisions of users, taken on the basis of these financial statements.
371
-
372
- - Identify and assess the risks of material misstatement of the financial statements, whether due to fraud or error, design and perform audit procedures responsive to
373
-
374
- ---
375
-
376
- those risks, and obtain audit evidence that is sufficient and appropriate to provide a basis for my opinion. The risk of not detecting a material misstatement resulting from fraud is higher than for one resulting from error, as fraud may involve collusion, forgery, intentional omissions, misrepresentations, or the override of internal control.
377
-
378
- - Obtain an understanding of internal control relevant to the audit in order to design audit procedures that are appropriate in the circumstances, but not for the purpose of expressing an opinion on the effectiveness of the Company’s internal control.
379
- - Evaluate the appropriateness of accounting policies used and the reasonableness of accounting estimates and related disclosures made by the management.
380
- - Conclude on the appropriateness of management’s use of the going concern basis of accounting and, based on the audit evidence obtained, whether a material uncertainty exists related to events or conditions that may cast significant doubt on the Company’s ability to continue as a going concern. If I conclude that a material uncertainty exists, I am required to draw attention in my auditor’s report to the related disclosures in the financial statements or, if such disclosures are inadequate, to modify my opinion. My conclusions are based on the audit evidence obtained up to the date of my auditor’s report. However, future events or conditions may cause the Company to cease to continue as a going concern.
381
- - Evaluate the overall presentation, structure and content of the financial statements, including the disclosures, and whether the financial statements represent the underlying transactions and events in a manner that achieves fair presentation.
382
-
383
- I communicate with the Accounting Officer regarding, among other matters, the planned scope and timing of the audit and significant audit findings, including any significant deficiencies in internal control that I identify during my audit.
384
-
385
- ---
386
-
387
- the adverse consequences of doing so would reasonably be expected to outweigh the public interest benefits of such communication.
388
-
389
- # Other Reporting Responsibilities
390
-
391
- In accordance with Section 19 (1) of the National Audit Act, 2008, I report to you, based on my work described on the audit of Financial Statements, that; except for the matters raised in compliance with legislation section below, and whose effect has been considered in forming my opinion on financial statements, the activities, financial transactions and information reflected in the financial statements that have come to my notice during the audit, are in all material respects, in compliance with the authorities which govern them.
392
-
393
- # REPORT ON THE AUDIT OF COMPLIANCE WITH LEGISLATION
394
-
395
- The material findings in respect of the compliance criteria for the applicable subject matters are as follows;
396
-
397
- # 10.0 Management of Natural Resources
398
-
399
- **10.1 Unlicensed Activities on Natural resources**
400
- According to Sec. 38(3) of the National Environment Management Act, the authority may, in consultation with the lead agency and the district environment committee, declare any wetland to be a protected Wetland, thereby excluding or limiting human activities in that wetland while Sec.36 provides for restrictions on the use of wetlands and requires a person to obtain written approval from the authority given in consultation with the lead agency.
401
-
402
- It was observed that the district does not have a register of the licenses issued for activities carried out on gazetted wetlands. Audit inspection revealed that there were a number of activities illegal carried out on various wetlands and forests in form of cultivations, constructions and waste dumping.
403
-
404
- ---
405
-
406
- I advised the Accounting Officer to initiate measures to ensure that utilisation of natural resources is in accordance with the law.
407
-
408
- **11.0 Establishment of the Physical Planning Committee.**
409
- Section 9 of the Physical Planning Act 2010 requires each district council to establish a district physical planning committee, which shall consist of among other members a physical planner in private practice appointed by the council on the advice of the secretary to the Board.
410
-
411
- However, it was observed that although the physical planning committee had been established and members appointed, the committee lacked a physical planner in private practice who would be responsible for developing physical plans as required by law. Lack of a qualified physical planner can result into preparation of poor physical plans.
412
-
413
- The Accounting Officer explained that these people are few in the job market and attracting them is difficult. He added that poor remuneration in the civil service makes it hard to attract them but he promised that the district would look for the best way to handle the situation.
414
-
415
- I advised the Accounting Officer to ensure that a physical planner in private practice is appointed as required by law.
416
- **11.1 Performance of the Physical Planning Committee**
417
- Section 9 of the Physical Planning Act,2010 outlines the functions of the Physical planning Committee which include among others: preparation of physical development plans; recommending to the district council subdivision of land which may have a significant impact on contiguous land or be in breach of any condition registered against a title deed in respect of such land; approving development applications relating to housing estates, industrial location, schools, petrol stations, dumping sites or sewerage treatment, which may have injurious impact on the environment; hearing appeals lodged by persons aggrieved by decisions made by the district physical planner and lower local physical planning committees; and exercising supervisory powers over all lower planning committees.
418
-
419
- ---
420
-
421
- discuss about the operationalization of the committee. No other activities were performed by the committee other than training of the lower physical planning committees that had just been done.
422
-
423
- Poor performance of the committee denies the community timely accessibility of services rendered by the committee.
424
-
425
- The Accounting Officer in his response stated that all activities of the sector were funded under local revenue which was not forth coming.
426
-
427
- I advised the Accounting Officer to equally prioritize the committee when allocating the available resources.
428
-
429
- # 11.2 Non Budgeting for the Physical Planning Committee Activities
430
-
431
- PART VII, Section 44 of the Physical Planning Act, 2010 provides that all activities of the physical planning committees shall be financed by the local government finances.
432
-
433
- However, review of the budget and financial statements of the Council revealed that there was no budget and therefore no expenditure on activities of the committee. Failure to fund activities of the Committees adversely affects their operations.
434
-
435
- The Accounting Officer explained that more resources had been allocated to facilitate the activities of the district physical planning committee in the 2019/2020 FY budget.
436
-
437
- I advised the Accounting Officer to budget for and fund planned activities of the committee.
438
-
439
- # 12.0 Management of Road Equipment 12.1 Failure to maintain road equipment records
440
-
441
- ---
442
-
443
- I advised the Accounting Officer to ensure that road equipment records are put in place in accordance with the regulations.
444
-
445
- # 12.2 Non-functional/ Grounded Equipment
446
-
447
- Section 4h of the guidelines for care and management of road equipment in government ministries, departments and agencies, by ministry of works and transport 2017 provides a step-by-step Repairs Management Process to be followed by users of road equipment.
448
-
449
- It was however observed that two equipment were grounded and required major repairs as shown in the pictures below;
450
-
451
- ||||||||
452
- |---|---|---|---|---|---|---|
453
- |^||||||^|
454
- |^| Grass grown out of the grounded wheel loader |<| Grounded Grader Reg. UG 1830W |<|<|<|
455
-
456
-
457
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0136.jpg)
458
-
459
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0137.jpg)
460
-
461
- It was further noted that the equipment is not properly maintained as there were no defects reports, no reports to indicate that regular checks are carried out, logbooks to guide in utilization were lacking and no system of quality assurance checks carried out either before or after repairs.
462
-
463
- An interview with the Assistant Engineering Officer revealed that the funds received were inadequate to handle the required major repairs of the equipment.
464
-
465
- ---
466
-
467
- I advised the Accounting Officer to expedite the process of repairing the grounded equipment’s.
468
-
469
- # 13.0 Status of Basic Medical Equipment
470
-
471
- Section 5.17 of the Service standards & Service delivery standards for the Health Sector, 2016 requires that medical equipment is available and properly maintained to meet the needs of the patient population. However, a review of Awach Health Centre IV departments’ reports and audit inspection revealed that a number of medical equipment was lacking and some was not in fair condition as shown in **Appendix V.**
472
-
473
- Consequently, patients are referred to distant Facilities to receive the same services like caesarean section, circumcision and other operations that could be done by a health Centre IV.
474
-
475
- The Accounting Officer promised to plan and forward the request to the National Medical Stores for consideration.
476
-
477
- **13.1**
478
-
479
- # Failure to record medical equipment in the district assets register
480
-
481
- The Local Government Financial and Accounting Regulations 2007 section 59 (e) requires local councils to maintain Fixed Assets registers, and this is expounded by the Local Governments Financial and Accounting Manual 2007 section 2.3.1.4. (2).
482
-
483
- However, review of the fixed assets register revealed the medical equipment and other assets at the health facility level (Awach HC IV) were not recorded therein.
484
- The Accounting Officer provided no response to the issue.
485
-
486
- ---
487
-
488
- Contrary to the above, it was noted that procurements worth UGX 356,707,842 lacked appropriate supporting documentation as shown in **Appendix VI.**
489
-
490
- There is a possibility that some procurement procedures were not followed during the procurement processes.
491
- The accounting officer stated that at the time of audit these documents were still with PPDA.
492
-
493
- I advised the Accounting Officer to always keep documents in their principle place.
494
-
495
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202018/img-0140.jpg)
496
-
497
- John F.S. Muwanga
498
-
499
- # AUDITOR GENERAL
500
-
501
- KAMPALA
502
-
503
- 17 th December, 2018
504
-
505
- ---
506
-
507
- # Appendix I: Noncompliance with the repayment schedule
508
-
509
- | **S/N** | **Project Name** | **Code** | **Disbursed Amounts (Ushs)** | **Amount Recovered** | **Perce ntage Reco very** | **Outstanding Amount** | **Percent age Outsta nding** |
510
- |---|---|---|---|---|---|---|---|
511
- | 1 | Unyama B Wilobo Wire Ox- Cultivation Project | N091060304001 | 4,700,000 | 1,650,000 | **35** | 3,050,000 | 65 |
512
- | 2 | Agung Atem Lwak Youth Ox- Cultivation Project | N091060407001 | 7,691,000 | 4,150,000 | 54 | 3,541,000 | 46 |
513
- | 3 | Kal Center Lonyo Tek Vegetable Growers | N091050107001 | 5,000,000 | 0 | 0 | 5,000,000 | 100 |
514
- | 4 | Cwinyi Youth Fish Farming Group Oilong Jing | N092020604001 | 4,550,000 | 0 | 0 | 4,550,000 | 100 |
515
- | 5 | Lugore Piggery Youth Group | N091040302001 | 7,527,000 | 0 | 0 | 7,527,000 | 100 |
516
- | 6 | Corner Ward Ribbe Aye Teko Piggery Youth Group | N091030204001 | 8,000,000 | 3,659,650 | 45.7 | 4,340,350 | 54.3 |
517
- | 7 | Agoro Opar Pi Bulu Piggery Youth Group | N091040101001 | 8,877,000 | 0 | 0 | 8,877,000 | 100 |
518
- | 8 | Lapeta Vision Ahead Youth Piggery Project | N091060104001 | 5,034,000 | 0 | 0 | 5,034,000 | 100 |
519
- | 9 | Te-Ogali Piggery Project | N092060504001 | 8,100,000 | 0 | 0 | 8,100,000 | 100 |
520
- | 10 | Pato Ngecani Piggery Project | N092010207001 | 8,280,000 | 2,000,000 | 24.2 | 6,280,000 | 75.8 |
521
- | 11 | Peyweka Piggery Project Owak Cac | N092060104001 | 8,200,000 | 1,250,000 | 15.3 | 6,950,000 | 84.7 |
522
- | 12 | Loyoboo A Utem Gum Youth Piggery Project | N091060203001 | 6,238,000 | 300,000 | 4.6 | 5,938,000 | 95.4 |
523
- | 13 | Piggery Project Owak Youth | N091020102001 | 6,500,000 | 0 | 0 | 6,500,000 | 100 |
524
- | 14 | Gweno Twom Tampi Anyim Brick Laying | N092060203001 | 4,500,000 | 800,000 | 17.7 | 3,700,000 | 82.3 |
525
-
526
-
527
- ---
528
-
529
- || Youth Group |||||||
530
- |---|---|---|---|---|---|---|---|
531
- | 15 | Ibar Ribe Ber Produce Buying & Selling Youth Group | N092010301001 | 7,100,000 | 1,050,000 | 14.7 | 6,050,000 | 85.3 |
532
- | 16 | Atyang Wa Roco Kwo Produce Buying & Selling Group | N092030101001 | 8,200,000 | 3,500,000 | 42.7 | 4,700,000 | 57.3 |
533
- | 17 | Oroko Wapwoyo Lutela Produce Buying & Selling Group | N091040203001 | 8,120,000 | 6,800,000 | 83.7 | 1,320,000 | 16.3 |
534
- | 18 | Boke Ber Wa Ool Ki Lego Jami Youth Goat Rearing Group | N091030402001 | 8,145,000 | 2,513,200 | 30.8 | 5,631,800 | 69.2 |
535
- | 19 | Laminadera Youth Crop Farming | N092020406001 | 6,468,000 | 4,200,000 | 65 | 2,268,000 | 35 |
536
- | 20 | Labworomor Youth Farming Group | N092020202001 | 6,320,000 | 500,000 | 8 | 5,820,000 | 92 |
537
- | 21 | Cet Kana Youth Piggery Project | N091020204001 | 8,676,000 | 960,000 | 11 | 7,716,000 | 89 |
538
- | 22 | Youth Masonry & Brick Laying Project Lawiya Dul | N091020303001 | 6,445,000 | 1,600,000 | 25 | 4,845,000 | 75 |
539
- | 23 | Youth Grinding Milling Group Rom Yele Pi Kwo | N092020509001 | 6,505,000 | 0 | 0 | 6,505,000 | 100 |
540
- | 24 | Lukodi Youth Produce Buying & Selling Project | N091020601001 | 6,199,000 | 1,300,000 | 21 | 4,899,000 | 79 |
541
- | 25 | Ryemocan Youth Produce Dealers Project Latin Nyer | N092040206001 | 7,460,000 | 500,000 | 6.7 | 6,960,000 | 93.3 |
542
- | 26 | Youth Produce Buying & Selling Project Opit Mayot Peke | N092040505001 | 8,750,000 | 200,000 | 23 | 8,550,000 | 77 |
543
- | 27 | Opwach Dii Cwinyi Youth Produce Buying & Selling Project | N092040104001 | 9,460,000 | 202,500 | 2.1 | 9,257,500 | 97.9 |
544
- | 28 | Wan Youth Produce Buying & Selling Project Keto Wutem | N092030403001 | 7,998,000 | 6,000,000 | 75 | 1,998,000 | 25 |
545
-
546
-
547
- ---
548
-
549
- | 29 | Hima Pe Nongi Labedo Youth Produce Buying & Selling Project | N092030308001 | 7,975,000 | 2,350,000 | 29.4 | 5,625,000 | 70.6 |
550
- |---|---|---|---|---|---|---|---|
551
- | 30 | Oguru Wor Tweroni Youth Produce Buying & Selling Project | N091010401001 | 8,621,500 | 2,043,000 | 23.7 | 6,578,500 | 76.3 |
552
- | 31 | Acut Omer Youth Produce Buying & Selling Project | N091010306002 | 8,642,800 | 6,500,000 | 75.2 | 2,142,800 | 24.8 |
553
- | 32 | Payuta Straight Talk Youth Group | N091010203001 | 8,050,000 | 5,919,000 | 73.5 | 2,131,000 | 26.5 |
554
- | 33 | Paminano Produce Buying & Selling | N091020702001 | 8,020,000 | 6,127,500 | 76.7 | 1,892,500 | 23.3 |
555
- | 34 | Obwolo Mic Pa Lacwec Youth Livestock Project | N092020604001 | 8,000,000 | 4,000,000 | 50 | 4,000,000 | 50 |
556
- | 35 | Camp Tek Youth Animal Buying & Selling Abili Bedo I | N092020306001 | 8,150,000 | 0 | 0 | 8,150,000 | 100 |
557
- | 36 | Kalo Ox- Cultivation Project Awoonyim Wang | N091050302001 | 8,870,000 | 200,000 | 2.2 | 8,670,000 | 97.8 |
558
- | 37 | Aremo A Can Yela Animal Traction Youth Group | N092010404001 | 7,100,000 | 650,000 | 9.2 | 6,450,000 | 80.8 |
559
- | 38 | Horti Cultural Crop Production Group Acwera United | N092010509002 | 6,800,000 | 1,000,000 | 14.7 | 5,800,000 | 85.3 |
560
- | 39 | Piggery Project Patalira Kica Ber | N092060306001 | 7,464,000 | 5,950,000 | 79.7 | 1,514,000 | 20.3 |
561
- | 40 | Piggery Project Adak Alliance | N091050305001 | 9,215,000 | 0 | 0 | 9,215,000 | 100 |
562
- | 41 | Paminmel Agro Forestry /Tree Nursery Project | N091020503001 | 8,250,000 | 0 | 0 | 8,250,000 | 100 |
563
- | 42 | Dino Aol Kilonge Produce Buying & Selling Group | N092050207001 | 7,600,000 | 2,450,000 | 32.2 | 5,150,000 | 67.8 |
564
- | 43 | Agro-Business Group Odek Centre | N092050404002 | 7,400,000 | 850,000 | 11.4 | 6,550,000 | 88.6 |
565
- | 44 | Waryemo Can Produce Buying & Selling Group Pageya | N091010103001 | 7,332,000 | 1,240,000 | 17 | 6,092,000 | 83 |
566
-
567
-
568
- ---
569
-
570
- | 45 | Pok Ogali Youth Ox-Cultivation Project | N091040303001 | 6,758,000 | 0 | 0 | 6,758,000 | 100 |
571
- |---|---|---|---|---|---|---|---|
572
- | 46 | Lakwaya Ox- Cultivation Youth Project | N092040404001 | 6,450,000 | 1,300,000 | 20.1 | 5,150,000 | 79.9 |
573
- | 47 | Kiteny Tam Pi Diki Youth Piggery Project | N091040301001 | 8,425,000 | 0 | 0 | 8,425,000 | 100 |
574
- | 48 | Lajwatek Progressive Youth Piggery Project | N092020502001 | 7,550,000 | 1,000,000 | 13.2 | 6,550,000 | 86.8 |
575
- | 49 | Oguru Produce Buying & Selling | N091020304001 | 7,054,200 | 4,130,000 | 58.5 | 2,924,200 | 41.5 |
576
- | 50 | Kulukeno Produce Buying & Selling | N091020501001 | 5,000,000 | 2,000,000 | 40 | 3,000,000 | 60 |
577
- | Wanglobo Produce Buying & Selling | N092040305001 | 4,865,000 | 0 | 0 | 4,865,000 | 100 |
578
- || **Total** || **372,635,500** | **90,844,850** | **24.4** | **281,790,650** | **75.6** |
579
-
580
-
581
- 51
582
-
583
- ---
584
-
585
- # Appendix II: Evaluation of Planned Output Uganda Road Fund Budget (URF)
586
-
587
- | **Met hod** | **Activity/R oad Name** | **Planned Output/ Quantity** | **Actual Output/ Quantity** | **Variance in Output/ quantity** | **Amount Budgeted (UGX))** | **Amount Released (UGX)** | **Amount spent (UGX)** | **Variance (UGX)** | **Mgt Explanation** | **Audit Remarks** |
588
- |---|---|---|---|---|---|---|---|---|---|---|
589
- | **Periodic Road Maintenance** |<|<|||||||||
590
- | **N/A** |||||||||||
591
- | **Routine Mechanised** |<|<|<|<|||||||
592
- | 1 | Akonyibedo- Omoti | 17 | 17 | 0.00 | 69,540,571 | 69,540,571 | 69,573,000 | - 32,429 |||
593
- | 2 | Cooper Cetcan- Pugwinyi | 15.5 | 16 | -0.50 | 65,000,000 | 65,000,000 | 64,973,800 | 26,200 |||
594
- | 3 | Pageya Omel | 11 | 11.2 | -0.20 | 41,509,226 | 41,509,226 | 41,503,500 | 5,726 |||
595
- | 4 | Negri- Paiminano- Lalem | 6.5 | 6.3 | 0.20 | 42,155,000 | 42,155,000 | 42,155,000 | - |||
596
- | 5 | Paicho- Corner Mega | 8.5 | 8.9 | -0.40 | 10,872,047 | 10,872,047 | 10,872,020 | 27 |||
597
- ||| 58.5 | 59.4 | -0.9 | 229,076,844 | 229,076,844 | 229,077,320 | - 476 |||
598
- | **Routine manual** |<||||||||||
599
- | 1 | Abera- Awach | 19.20 | 19.20 | 0 | 5,843,072 | 5,843,072 | 5,843,072 | 0 |||
600
- | 2 | Akonyibedo- Omoti | 22.50 | 22.50 | 0 | 6,847,352 | 6,847,352 | 6,847,352 | 0 |||
601
- | 3 | Awach-Arut | 12.40 | 12.40 | 0 ||| 3,773,652 | 0 |||
602
-
603
-
604
- 27
605
-
606
- ---
607
-
608
- || 3,773,652 | 3,773,652 | 00 ||||
609
- |---|---|---|---|---|---|---|
610
- | 4 | Awach- Paibona | 19.60 | 0 | 19.6 | 5,964,804 | 5,964,804 | 0 | 5,964,804 | Due for routine. | The road was a very poor state that could not be improved used manual maintenance. |
611
- | 5 | Bardege- Lalem- Pugwinyi | 31.80 | 31.80 | 0 | 9,677,588 | 9,677,588 | 9,677,588 | 0 |||
612
- | 6 | Cwero- Omel- Lapuda | 18.80 | 18.80 | 0 | 5,721,344 | 5,721,344 | 5,721,344 | 0 |||
613
- | 7 | Coope- Monroc | 9.60 | 9.60 | 0 | 2,921,536 | 2,921,536 | 2,921,536 | 0 |||
614
- | 8 | Coope- Cwtkana- Pugwinyi | 17.50 | 17.50 | 0 | 5,325,716 | 5,325,716 | 5,325,716 | 0 |||
615
- | 9 | Cwero- Omel-Minja | 27.00 | 27.0 | 0 | 8,216,820 | 8,216,820 | 0 | 8,216,820 | Done by ministry of works ||
616
- | 10 | koco Angwen- Corner pa Oteri | 4.90 | 4.90 | 0 | 1,491,200 | 1,491,200 | 1,491,200 | 0 |||
617
- | 11 | Laroo- Pageya | 4.20 | 4.20 | 0 | 1,278,172 | 1,278,172 | 0 | 1,278,172 | Under Low cost sealing ||
618
- | 12 | Laroo- Unyama | 4.00 | 4.00 | 0 | 1,217,308 | 1,217,308 | 0 | 1,217,308 | Done using mechanised routine ||
619
-
620
-
621
- 28
622
-
623
- ---
624
-
625
- | 13 | Lukome- Gwdendiya | 13.00 | 13.00 | 0 | 3,956,248 | 3,956,248 | 3,956,248 | 0 |||
626
- |---|---|---|---|---|---|---|---|---|---|---|
627
- | 14 | c | 9.00 | 9.00 | 0 | 2,738,940 | 2,738,940 | 2,738,940 | 0 |||
628
- | 15 | Pageya Omel | 37.00 | 37.00 | 0 | 11,260,088 | 11,260,088 | 11,260,088 | 0 |||
629
- | 16 | Paicho- Corner Mega | 8.50 | 8.50 | 0 | 2,586,776 | 2,586,776 | 2,586,776 | 0 |||
630
- | 17 | Paicho- Patiko | 22.40 | 22.40 | 0 | 6,816,920 | 6,816,920 | 6,816,920 | 0 |||
631
- | 18 | Palaro-Mede | 25.50 | 25.50 | 0 | 7,760,332 | 7,760,332 | 7,760,332 | 0 |||
632
- | 19 | Patiko HQ- Gwendiya Market | 11.50 | 11.50 | 0 | 3,499,756 | 3,499,756 | 3,499,756 | 0 |||
633
- | 20 | Unyama- Pageya | 4.20 | 4.20 | 0 | 1,278,172 | 1,278,172 | 0 | 1,278,172 | Done by China railways No. 6 ||
634
- ||| 322.6 | 263.6 | 19.6 | 98,175,796 | 98,175,796 | 63,756,444 | 17,955,276 || The Amount in variance was used to implement culvert installation along Arut – Awach road. |
635
- | **Transfer to Sub Counties** |<||||||||||
636
-
637
-
638
- 29
639
-
640
- ---
641
-
642
- || Community Access Roads (CAR) Road Bottle Neck Improvemen t | 64.7 | N/A | N/A | 46,331,38 4 | 46,331,384 | 46,331,384 | 0 || These funds will be audited independently in sub counties. Thus, verification of actual output could not be done. However, transfer could not be confirmed since the transfer vouchers were not supported by acknowledgement receipts. |
643
- |---|---|---|---|---|---|---|---|---|---|---|
644
- | **Mechanical Imprest** |<|<|||||||||
645
- || Mechanical Imprest | N/A | N/A | N/A | 69,611,430 | 69,611,430 | 57,306,578 | 12,304,852 | Systems failure to process payment. | Variance in mechanical imprest resulted into failure to maintain some vehicles and road equipments. |
646
- | DE Office operation expenses |<||||||||||
647
- || Office operation in DE Office | N/A | N/A | N/A | 28,400,000 | 28,400,000 | 26,635,457 | 1,764,543 || All activities in District Engineers office were implemented |
648
-
649
-
650
- 30
651
-
652
- ---
653
-
654
- # Appendix III: Non- disbursement of Youth funds for FY 2017-18
655
-
656
- | **Sub County** | **Names of the YIGs** | **Activity** for** **implementation** | **Number of beneficiaries.** | **Amount to be disbursed** |
657
- |---|---|---|---|---|
658
- | Unyama | Coopil MIC Pa Lacwer Youty Ox- Traction | Agriculture | 10 | 8,400,000 |
659
- | Patiko | kacel Ox- Pajaa WatekYouth cultivation | Agriculture | 10 | 8,410,000 |
660
- | Awach | Oguru Bod Ki Gen Animal Traction. | Agriculture | 15 | 7,390,000 |
661
- | Bungatira | Twon Okun Ribbe Ber youth Farmers | Agriculture | 10 | 7,795,000 |
662
- | Unyama | Oguru Tic Ryoma Can Youth Piggery Group. | Agriculture | 12 | 7,900,000 |
663
- | Unyama | Unyama A Diro Pe Rora Youth Poultry group | Agriculture | 11 | 8,580,000 |
664
- | Awach | Boli Pi Cing Maleng grinding Mill. | Industry/Agro | 10 | 6,840,000 |
665
- | Patiko | Anyodwe Producers Youth | Trade | 12 | 7,100,000 |
666
- | Patiko | Angany Can Kwoki Youth Produce Traders | Trade | 10 | 7,100,000 |
667
- | **Total** ||| **100** | **69,515,000** |
668
-
669
-
670
- ---
671
-
672
- # Appendix IV: PPDA Procurement Audit Findings
673
-
674
- | **No** | **Finding** | **Risk/Implication** | **Recommendation** |
675
- |---|---|---|---|
676
- | **1.** | **Management of works under force account mechanism:** On 24 th November 2017, Gulu Municipal Council’s Contracts Committee approved works estimated at UGX 224,359,800 to be implemented under force account mechanism for the following roads: i. Akonyi Bedo-Omoti road 17Km out of 22.5Km at the cost of UGX ii. Pageya –Omel road 11KM out of 37Km at a total cost of UGX iii. Coope –Cetkana –Pugwinyi road 15.5Km out of 17.5Km at a total cost of UGX 64,973,800; iv. Negri –Paminano Road 6.5Km out 6.5Km at a total cost of UGX v. Paicho –Corner –Mega 8.5Km out of 8.5Km at the total cost of UGX 64,857,800; 41,505,500; 42,155,000; and 10,867,000. The Authority noted the following; a) There was no evidence of any procurement process for inputs required for works except fuel contrary to Regulation 4 of the PPDA (Force Account Mechanism) Regulations, 2014.E.g. building materials, fuel, Traxcavator & Low Bed. b) The Authority also observed that throughout the financial year there was no report submitted to the office of the Accounting Officer on works undertaken using the force account mechanism contrary to Regulation 5 (5) of the PPDA (Force Account Mechanism) Regulations, 2014. | Mismanagement of resources allocated for works under the force account mechanism. | The Accounting Officer should ensure procurement procedures are followed when procuring inputs under force account. that |
677
- | **2.** | **Deficiency and non-performance of the Procurement Unit:** During the audit, the Authority made the following observations a) The Procurement and Disposal Unit failed to submit quarterly reports | Failure to procurements hinders accountability. report on undertaken | The Chief Administrative Officer should strengthen the internal controls on record |
678
-
679
-
680
- 32
681
-
682
- ---
683
-
684
- || on procurement and disposal for the entire financial year 2017/2018 as per the guideline issued by the Authority. The quarterly reports were later submitted on 7 th September 2018 without the respective Contracts Committee minutes. b) There were three hundred ninety eight (398) procurement transaction payments worth UGX 758,059,547 in the IFMS purchase register which were entered by the Procurement Officer but did not follow the pre-requisite procurement procedures such as raising requisitions, conducting a bidding process, evaluation of bids and issuance of call off orders for those under framework arrangement as required under the PPDA Act, 2003 and Local Governments (PPDA) Regulations, 2006\. These included among others; Newspaper adverts, accounting books, banana suckers, blankets and bed sheets for nodding, book shelves/filing cabinets, borehole pump parts, materials, fuel, furniture, goods for agricultural extension, grader blade, hire of road equipment, laptop, local materials, meals and refreshments, motorcycle repair, mowing, payment for gravel, camera, vehicle repair and service, food for nodding, tonner and vehicle tyres. c) During the audit, the Procurement Officer informed the auditors that there were five (5) Contracts Committee sittings during the financial year under review, only three sets of minutes were on the Contracts Committee minute file. d) All the sampled procurement action files reviewed during the audit were incomplete despite the Entity being notified early hence an indicator of poor record keeping. e) Furthermore there were numerous inconsistencies in the procurement action files which are discussed in detail in this management letter. || keeping Procurement Unit. within the and Disposal |
685
- |---|---|---|---|
686
- | **3.** | **Suspected fraudulent payments for repair of motorcycles:** The Authority found a series of payments entered by the Procurement Officer in the IFMS purchase register worth UGX 8,330,000 attributed to repair of motorcycles that appeared fictitious and lacked evidence to prove that the services were required and procured in accordance with the Local | Loss of money and citizens denied service delivery. | The Chief Administrative Officer should farther investigate and bring to book any persons found responsible for fraudulent activities |
687
-
688
-
689
- 33
690
-
691
- ---
692
-
693
- || Governments (PPDA) Regulations, 2006 and guidelines and fairly executed. *Suspected fraudulent payment for repair of motorcycles* **GoU Departme Provider No.** nt** **Report (UGX)** Production Gene 490,000 **LG SOB** i 2662 **Subject of Procuremen** **t** Motorcycle repair Motorcycle repair -Oyet Fred Motorcycle repair Motorcycle repair Motorcycle repair Motorcycle repair Motorcycle repair 2664 Production Gene 490,000 ii 2665 Production Gene 490,000 iii 2666 Production Gene 490,000 iv 2657 Production Gene 490,000 v 2658 Production Gene 490,000 vi Construction and Motor Garage Construction and Motor Garage Construction and Motor Garage Construction and Motor Garage Construction and Motor Garage Construction and Motor Garage Construction 2659 Production Gene 490,000 vii |<|<|<|<|<|<|<| including recovery of any lost funds. |
694
- |---|---|---|---|---|---|---|---|---|---|
695
- | **No.** |^|<|<|<|<|<|<|<|^||
696
- | i |^|<|<|<|<|<|<|<|^||
697
- | ii |^|<|<|<|<|<|<|<|^||
698
- | iii |^|<|<|<|<|<|<|<|^||
699
- | iv |^|<|<|<|<|<|<|<|^||
700
- | v |^|<|<|<|<|<|<|<|^||
701
- | vi |^|<|<|<|<|<|<|<|^||
702
- | vii |^|<|<|<|<|<|<|<|^||
703
-
704
-
705
- 34
706
-
707
- ---
708
-
709
- and Motor
710
- Garage
711
- viii 2660 Motorcycle Production Gene 490,000 repair
712
- Construction
713
- and Motor
714
- Garage
715
- ix 2661 Motorcycle Production Gene 490,000 repair
716
- Construction
717
- and Motor
718
- Garage
719
- x 2667 Motorcycle Production Gene 490,000 repair
720
- Construction
721
- and Motor
722
- Garage
723
- xi 2668 Motorcycle Production Gene 490,000 repair
724
- Construction
725
- and Motor
726
- Garage
727
- xii 2589 Repair Production Nile Energy 490,000 Motorcycle
728
- Limited
729
- xiii 2590 Repair Production Nile Energy 490,000 Motorcycle
730
- Limited
731
- xiv 2591 Repair Production Nile Energy 490,000 Motorcycle
732
- Limited
733
- xv 2592 Repair Production Nile Energy 490,000 Motorcycle
734
- Limited
735
- xvi 2593 Repair Production Nile Energy 490,000 Motorcycle
736
- Limited
737
- xvii 2727 Repair of Production Nile Energy 490,000 Motorcycle
738
- Limited
739
-
740
- ##### Total
741
-
742
- ##### 8,330,00
743
-
744
- **0**
745
-
746
- 35
747
-
748
- ---
749
-
750
- | **4.** | **Suspected fraudulent evaluation of bids:** The Authority found that in the following procurement transactions there were fraudulent actions as described below: a) Some of the bids that had been received were not evaluated. b) Some firms were not issued bidding documents but had bids being evaluated. c) Bids from some firms were evaluated without a record of being received and opened by the Entity. *Fraudulent evaluation of bids* **No. Subject Amount (UGX)** **Finding** Renovation of one block of four classrooms at Akonyibedo PS in Unyama Sub- County Renovation of water born toilet behind DHO office the district headquarters at i.e. 34,950,000 The record of bid opening had only one firm i.e. De-wats Company however, two more companies Beep Investment (U) Ltd & Denflo Construction Company Ltd were evaluated. 14,551,400 Out of the three bids that were received, only two bids of Asienjo General Enterprises (U) Ltd & Agresia Holdings Ltd were evaluated. The Bid of Fink Enterprises was not evaluated. iii Construction of 4 28,484,076 Out of the three bids that were i ii |<|<|<|<|<| The Entity was exposed to a risk of unfair advantage being given to some firms at the cost of other potentially competent firms. | The Chief Administrative Officer should compel the Procurement Officer to show cause as to why disciplinary action should not be taken against him. |
751
- |---|---|---|---|---|---|---|---|---|
752
- |^|^|<|<|<|<|<|^|^|
753
- |^|^|<|<|<|<|<|^|^|
754
- |^|^|<|<|<|<|<|^|^|
755
- |^|^|<|<|<|<|<|^|^|
756
-
757
-
758
- 36
759
-
760
- ---
761
-
762
- || stances drainable latrine with urinal at Lugore HC II in Labworomore Parish in Palaro Sub-county || received, only the bid of Deg Bedo Company Ltd was evaluated. Bids submitted by Kica Ber General Traders Ltd and OCF Construction & General Merchandise Ltd were not evaluated. Deg Bedo Company was recommended award despite not complying with the required bid validity i.e. they proposed 30 days and the requirements was 90 days Ltd for ||||
763
- |---|---|---|---|---|---|---|
764
- | iv | and of II in Renovation expansion Lugore HC OPD Labworomore Parish in Palaro Sub-county | 47,558,600 | Out of the three bids that were received, only the bid of Deg Bedo Company Ltd was evaluated. Bids submitted by Davico General Supplies & Construction (U) Ltd and Cumuni Holdings Ltd were not evaluated. Deg Bedo Company was recommended award despite not complying with the required bid validity i.e. they proposed 30 days and the requirements was 90 days Ltd for ||||
765
- | v | low sealing at Design of cost Laroo-Pageya | 45,068,000 | Two bids i.e. from Techno Design Engineering Ltd and MBJ Technology Ltd were evaluated however there was no proof of their receipt and ||||
766
-
767
-
768
- 37
769
-
770
- ---
771
-
772
- || subsequent bid opening. ||||
773
- |---|---|---|---|---|
774
- | vi | 771 tree to sub Supply of 1,950 passion fruits to production department mango seedlings Patiko county,under PMG and DDEG Funding | Various rates | While the evaluation report listed 4 firms that responded, only 2 were evaluated i.e. Amlo Holdings Ltd & Ibinoga Construction & General Merchandise. Latong & Sons Co. Ltd and Alabama Crown Ltd were not evaluated. ||||
775
- | vi | Construction fish pond Agonga Bungatira county of in Parish, sub- | 22,800,000 | record of receipt had 3 firms however only one firm was evaluated i.e. Stanhope Construction And General Merchandise Ltd. AKA Construction and Ibinonga construction & general merchandise not evaluated. were ||||
776
- | vii | Deep borehole apron casting and hand pump installation of 7 boreholes in Awach, Paicho, Unyama, Patiko, Bungantira and Palaro sub-county | 41,468,000 | Whereas 2 bids were received only one i.e. that of Balcon Engineering was evaluated& the one of Agola Enterprises Ltd not evaluated. Ltd ||||
777
- | viii | borehole 7 in drilling boreholes of Deep | 85,904,000 | Whereas bids from PMP Holdings Ltd & BM Watsan Holdings Ltd were evaluated, ||||
778
-
779
-
780
- 38
781
-
782
- ---
783
-
784
- Awach, Paicho,
785
- bids were not received from
786
-
787
- Bungatira,
788
- these firms. A bid was
789
-
790
- Unyama , Patiko
791
- received from Geobot Water
792
-
793
- & Palaro Sub-
794
- Engineering Services but not
795
-
796
- Counties
797
- evaluated.
798
-
799
- 39
800
-
801
- ---
802
-
803
- # Appendix V: Status of Medical Equipment in Awach HC IV
804
-
805
- | **SN** | **NAME OF EQUIPMENT** | **QUANTITY** | **USE/PURPOSE** | **EXISTANCE** | **CONDITION** | **REMARKS** |
806
- |---|---|---|---|---|---|---|
807
- || C/s sets (caesarean sets) | 5 | For C-Section operations | 0 | N/A | Needed |
808
- || Oxygen cylinders (large size) | 3 | For administration of Oxygen | 2 | Good | More needed |
809
- || Hernia sets | 4 | For operation and management of Hernia | 0 | N/A | Needed |
810
- || D&C sets | 3 | Used for dilatation and curettage | 3 | Good ||
811
- || MVA | 3 | For manual volume aspiration | 3 | Good ||
812
- || Ambu bag ||||||
813
- || 1\. Neonatal | 2 | Used to provide positive pressure ventilation | 2 | Good ||
814
- || 2\. Adult | 2 | Used to provide positive pressure ventilation | 2 | Good ||
815
- || Penguin sucker | 2 | Helps in clearing the babies airway | 0 | N/A | Needed |
816
- || Nasal oxygen prongs | 10 | Used to deliver supplementary oxygen | 10 | Good ||
817
- || Laparotomy set | 2 | Surgical incision into the abdomen for evacuation or preparation for surgery | 0 | N/A | Needed |
818
- || Pulse oximeter | 2 | Non-invasive method for monitoring oxygen levels | 1 | Good | More needed |
819
- || Suction machine ||||||
820
- || 1\. Manual | 1 | Extraction of mucus and other fluids | 1 | Good ||
821
-
822
-
823
- ---
824
-
825
- || 2\. Electric | 1 | Extraction of mucus and other fluids | 1 | Good ||
826
- |---|---|---|---|---|---|---|
827
- || Boyle’s machine bp calf | 5 | For administering anaesthesia | 0 | N/A | Needed |
828
- || Anaesthetic trolley | 1 | For administering anaesthesia | 1 | Good ||
829
- || Oxygen concentrator | 10 | For administering oxygen | 2 | Good | More needed |
830
- || Portable operating light | 2 | Provide light during operations | 2 | Good ||
831
- || Laryngoscope | 1 | Used for examining the larynx | 1 | Good ||
832
- || Blood pressure machines[bp] | 2 | Measuring pressure | 2 | Good ||
833
- || Autoclave |||| Good ||
834
- || 1\. Electric | 1 | Used for sterilization | 1 | Good ||
835
- || 2\. Non electric | 1 | Used for sterilization | 1 | Good ||
836
- || Steam steriliser | 1 | Sterilising medical equipment to get rid of bacteria and other pathogens | 1 | Good ||
837
-
838
-
839
- # Appendix VI: Missing records on Procurement Action files
840
-
841
- | **Reference** **Number** **Procurement** | **Subject** **Procurement** **of** | **Name of Provider/ Contractor** | **Contract Value** | **Remarks** |
842
- |---|---|---|---|---|
843
- | Gulu508/wrks/2 017- 2018/000004 | Deep drilling of 7 boreholes in Awach, Paicho, Bungatira, Patiko, Unyama and Palaro sub counties under DDEG and DWSCG funding | Brottos (U) Ltd | 85,904,000 | Availability of funds not completed only 22.8m provided for one borehole under DDEG. Bid issue and receipt records not signed and attached were duplicates. Evaluation report not attached. Approval of procurement |
844
-
845
-
846
- ---
847
-
848
- || method and bid document not attached. |
849
- |---|---|
850
- | Gulu508/wrks/2 017- 2018/00029 | Deep borehole apron casting of 7 boreholes in Awach Paicho, Unyama, Patiko and Palaro sub-counties under DDEG and DWSCG | Balcon Engineering Ltd | 41,468,000 | PPDA form 1 for procurement requisition and confirmation of funds not attached. Records of did issue and receipt not signed. No approval of the method of procurement by the contracts committee. |
851
- | Gulu508/wrks /2017- 2018/00001 | of Construction of one block 2 classrooms with an office attached at Aswa Camp Primary School. | Awoto Ltd Foundation | 73,978,700 | Bid issue and receipt records not signed and attached were duplicates. Evaluation report not attached. Approval of procurement method and bid document not attached. |
852
- | Gulu508/wrks /2017- 2018/00002 | of Construction of one block 2 classrooms at Palaro Primary School | Roovaco Company Ltd | 60,650,922 | Bid issue and receipt records not signed and attached were duplicates. Evaluation report not attached. Approval of procurement method and bid document not attached. |
853
- | Gulu508/wrks/2 017- 2018/00003 | of Construction of one block 2 classrooms at Tegot Primary School | Lacan Bil (u) Ltd | 61,220,660 | Bid issue and receipt records not signed and attached were duplicates. Evaluation report not attached. Approval of procurement method and bid document not attached. |
854
- | Not indicated | Renovation of administration building DDEG funding under | Lacan Bill (U) Ltd | 33,485,560 | Procurement not reported on. PPDA form 1 for procurement requisition and confirmation of funds not attached. Records of did issue and receipt not signed. No approval of the method of procurement by the contracts committee. |
855
-
856
-
857
- ---
858
-
859
- ## Total 356,707,842
860
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
reports/Gulu DLG Report of Auditor General 2018/Gulu DLG Report of Auditor General 2018.pdf DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:df258fb43ec83e7bd2cdcf4aa65ea1f9c90fa940869eb7c76ca3636686331f98
3
- size 2034117
 
 
 
 
reports/Gulu DLG Report of Auditor General 2018/Gulu DLG Report of Auditor General 2018.txt DELETED
@@ -1,1163 +0,0 @@
1
- OFFICE OF THE AUDITOR GENERAL
2
- THE REPUBLIC OF UGANDA
3
- OFFICE OF THE AUDITOR GENERAL
4
- UGANDA
5
-
6
- REPORT OF THE AUDITOR GENERAL ON THE FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
7
-
8
- FOR THE YEAR ENDED 30 TH JUNE 2018
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
- TABLE OF CONTENTS
21
-
22
- Page
23
-
24
- Opinion - 4
25
- Key Audit Matters - 5
26
- 1.0 Performance of Youth Livelihood programme - 5
27
- 1.1 Funding of the Programme - 6
28
- 1.2 Non-compliance with the Repayment Schedule - 6
29
- 1.3 Failure to transfer recovered funds to the recovery account in BOU - 7
30
- 1.4 Inspection of Performance of Youth projects - 7
31
- 2.0 Implementation of the Uganda road Funds - 7
32
- 2.1 Budget Performance - 8
33
- 2.2 Status of Implementation - 9
34
- 2.2.1 Routine Manual Maintenance - 9
35
- 2.2.2 Routine mechanized maintenance - 9
36
- 2.2.3 Periodic Maintenance - 9
37
- 3.0 Contingent Liability - 10
38
- 4.0 Unpaid Pension and Gratuity Arrears - 10
39
- 5.0 Payables - 10
40
- 6.0 Incomplete and abandoned works - 11
41
- Incomplete renovation and expansion of OPD in Lugore HCII Palaro Sub 6.1
42
- County - 11
43
- 6.2 Incomplete/Abandoned Low Cost Sealing of Laroo - Pageya Road 2 Km - 12
44
- 7.0 Non-Disbursement of YLP funds for financial year 2017/18 - 13
45
- 8.0 Non-Assessment of Taxable Revenue - 14
46
- Summary of exceptions raised in the PPDA audit report of the district for the 9.0
47
- financial year ended 30 th June, 2018 - 14
48
- Other Information - 14
49
- REPORT ON THE AUDIT OF COMPLIANCE WITH LEGISLATION - 17
50
- 10.0 Management of Natural Resources - 17
51
- 10.1 Unlicensed Activities on Natural resources - 17
52
- 11.0 Establishment of the Physical Planning Committee - 18
53
- 11.1 Performance of the Physical Planning Committee - 18
54
-
55
-
56
-
57
-
58
-
59
-
60
-
61
-
62
-
63
-
64
-
65
- 11.2 Non Budgeting for the Physical Planning Committee Activities - 19
66
- 12.0 Management of Road Equipment - 19
67
- 12.1 Failure to maintain road equipment records - 19
68
- 12.2 Non-functional/ Grounded Equipment - 20
69
- 13.0 Status of Basic Medical Equipment - 21
70
- 13.1 Failure to record medical equipment in the district assets register - 21
71
- 14.0 Missing Procurement Records - 21
72
- Appendix I: Noncompliance with the repayment schedule - 23
73
- Appendix II: Evaluation of Planned Output Uganda Road Fund Budget (URF) - 27
74
- Appendix III: Non- disbursement of Youth funds for FY 2017-18 - 31
75
- Appendix IV: PPDA Procurement Audit Findings - 32
76
- Appendix V: Status of Medical Equipment in Awach HC IV - 40
77
- Appendix VI: Missing records on Procurement Action files - 41
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
- Acronym Meaning
90
- BOU Bank of Uganda
91
- DLG District Local Government
92
- DMO District Medical Officer
93
- DRC District Road Committee
94
- EMHS Essential Medicines and Health Supplies
95
- HC IV Health Center Four
96
- ICT Information Communication Technology
97
- IESBA International Ethics Standards Board for Accountants
98
- INTOSAI International Organization of Supreme Audit Institutions
99
- ISSAI International Standards of Supreme Audit Institution
100
- LGFAM Local Governments Financial and Accounting Manual 2007
101
- LGFAR Local Governments Financial and Accounting Regulations 2007
102
- MMHS Management of Medicines Health Supply
103
- MoESTS Ministry of Education Science and Technology and Sports
104
- MoFPED Ministry of Finance Planning and Economic Development
105
- NMS National Medical Stores
106
- PFMA Public Finance Management Act 2015
107
- PPDA Public Procurement and Disposal of Assets
108
- RTI Rural Transport Infrustructure
109
- UGX Uganda Shillings
110
- UPE Universal Primary Education
111
- URA Uganda Revenue Authority
112
- URF Uganda Road Fund
113
- VAT Value Added Tax
114
- WHT Withholding Tax
115
- YIGs Youth Intrest Groups
116
- YLP Youth Livelihood Programme
117
-
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
- REPORT OF THE AUDITOR GENERAL ON THE AUDIT OF FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
132
-
133
- FOR THE YEAR ENDED 30 TH JUNE, 2018
134
-
135
- THE RT. HON. SPEAKER OF PARLIAMENT
136
-
137
- Opinion
138
-
139
- I have audited the accompanying financial statements of Gulu District Local Government which comprise the statement of Financial Position as at 30 th June 2018, and the Statement of Financial Performance, Statement of Changes in Equity and Statement of Cash Flows together with other accompanying statements for the year then ended, and notes to the financial statements ,including a summary of significant accounting policies .
140
-
141
- In my opinion, the financial statements of Gulu district local government for the year ended 30 th June 2018 are prepared, in all material respects, in accordance with section 51 of the Public Finance Management, 2015 and the Local Government Financial and Accounting Manual, 2007.
142
-
143
- Basis for Opinion
144
-
145
- I conducted my audit in accordance with International Standards of Supreme Audit Institutions (ISSAIs). My responsibilities under those standards are further described in the Auditor’s Responsibilities for the Audit of the Financial Statements section of my report. I am independent of the District in accordance with the Constitution of the Republic of Uganda (1995) as amended, the National Audit Act, 2008, the International Organization of Supreme Audit Institutions (INTOSAI) Code of Ethics, the International Ethics Standards Board for Accountants Code of Ethics for Professional Accountants (Parts A and B) (IESBA Code), and other independence requirements applicable to performing audits of Financial Statements in Uganda. I have fulfilled my other ethical responsibilities in accordance with the IESBA Code, and in accordance with other ethical requirements applicable to performing audits in Uganda. I believe that the audit evidence I have obtained is sufficient and appropriate to provide a basis for my opinion.
146
-
147
-
148
-
149
-
150
-
151
-
152
-
153
-
154
-
155
-
156
-
157
- Key Audit Matters
158
-
159
- Key audit matters are those matters that, in my professional judgment, were of most significance in my audit of the financial statements of the current period. These matters were addressed in the context of my audit of the financial statements as a whole, and in forming my opinion thereon, and I do not provide a separate opinion on these matters.
160
-
161
- I have determined the matters described below as the key communicated in my report.
162
-
163
- 1.0
164
-
165
- Performance of Youth Livelihood programme
166
-
167
- audit matters to be
168
-
169
- The Youth Livelihood Programme (YLP) is a Government Programme being imple- mented under the Ministry of Gender, Labour and Social Development (MoGLSD). The programme, which started in the financial year 2014-2015, was to respond to the existing challenge of unemployment among the Youths.
170
-
171
- The programme, which is implemented through the District provides support to the vulnerable youth in form of revolving funds for skills development projects and income generating activities initiated by youth groups.
172
-
173
- The audit focused on an amount of UGX.372, 635,500 disbursed in the Financial Year; 2014/2015 whose recovery period of three years had expired by 30 th June
174
-
175
- 2018. The audit procedures performed focused on ascertaining the following;
176
-
177
- - Whether all funds budgeted for YLP during the period under review were actually released and used only for the program.
178
- - Whether all funds advanced to the youth groups were repaid in accordance with the agreed repayment schedule and to establish reasons for failure or delays to repay the funds.
179
- - Whether all funds recovered during the period under review were transferred to the revolving fund account in Bank of Uganda to be disbursed to other Youth Livelihood Groups (YLGs) in accordance with the revolving funding model and
180
- - Whether on a sample basis the funded projects do exist and are operating.
181
-
182
-
183
-
184
-
185
-
186
-
187
-
188
-
189
-
190
-
191
-
192
- 1.1
193
-
194
- Funding of the Programme.
195
-
196
- A review of the approved budget for the YLP program revealed that whereas the District had budgeted for a total amount of UGX.389,197,196 for the financial year 2014/2015, only UGX.372,635,500 (96%) was released resulting in a shortfall of UGX.16,561,696 (4%). Consequently, out of the planned 53 projects/youth interest groups, only 51 were actually funded.
197
-
198
- This undermined the intended objective of responding to the challenge of unemploy- ment amongst the Youths. In his response the Accounting Officer through the district YLP focal point person explained that they wrote to the Ministry of Gender, Labour and Social Development expressing concern for the budget cuts.
199
-
200
- I advised the Accounting Officer to engage all the relevant authorities to ensure that adequate resources are allocated to the program so as to attain the programme objectives.
201
-
202
- 1.2
203
-
204
- Non-compliance with the Repayment Schedule
205
-
206
- The Documentation review revealed the repayment was not in line with the agreed repayment schedules. It was observed that whereas the groups funded in 2014/2015 were expected to have repaid a total amount of UGX.372,635,500 by close of the financial year 2017/2018, only UGX.90,844,850 (24%) was collected leaving a balance of UGX.281,790,650 (76%) outstanding as shown in appendix I
207
-
208
- Failure to repay in a timely manner implies that other eligible groups were unable to access the funds since this is a revolving fund.
209
-
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
-
218
-
219
-
220
- 1.3
221
-
222
- Failure to transfer recovered funds to the recovery account in BOU.
223
-
224
- A review of the bank statements of the YLP Recovery account No. 07547680004 in Bank of Africa, revealed that all the collected amount of UGX.90,844,850, had been transferred to the National Revolving Fund Collection Account by the end of the financial year 2017/18.
225
-
226
- This undermines the effective implementation of the program and the ultimate goal of creating employment for the youth. The Accounting Officer stated that he was in the process of transferring the funds to the National Revolving Fund Collection Account.
227
-
228
- I advised the Accounting Officer to ensure that recovered funds are always promptly transferred to the recovery Account in Bank of Uganda.
229
-
230
- 1.4 Inspection of Performance of Youth projects Physical inspection was carried out on two selected projects namely Oroko Wapwoyo Luluta Produce buying and selling Group and Adak Alliance Piggery Project to ascertain whether they were in existence and executed in accordance with the operational guidelines. It was observed that the groups had disintegrated. Lack of monitoring/supervision led to disintegration of groups and poor recovery.
231
-
232
- The Accounting Officer explained that efforts had been put in place to involve grass root leaders (LCI, LCII, Parish Chiefs, PISO, GISO, Sub County Chiefs) , to improve in monitoring and supervision and mobilize the youth groups for timely recovery.
233
-
234
- I advised the Accounting Officer to enhance mobilization and monitoring for effective programme implementation.
235
-
236
-
237
-
238
-
239
-
240
-
241
-
242
-
243
-
244
-
245
-
246
- year and during implementation, effort to be made to achieve the agreed objectives or targets as per the programme of Council.
247
-
248
- It has been observed over years that planned and budgeted for activities of a number of Local Governments are not implemented thereby affecting service delivery.
249
-
250
- During the overall office wide planning, I identified risks such as inadequate release of funds and failure to undertake budget monitoring and supervision that are likely to be the causes of failure to implement the planned activities under Uganda road fund. The focus was put on the planned major outputs under Uganda Road Fund which greatly impact on service delivery in the Local Governments.
251
-
252
- Consequently, I developed specific audit procedures which included to ascertain whether;
253
-
254
- - The budgeted URF releases for Local Governments for the year under review were actually received ;
255
- - The planned URF outputs were achieved;
256
-
257
- Based on the procedures performed, the following observations were made;
258
-
259
- 2.1 Budget Performance
260
-
261
- A total of UGX.471,595,450 was budgeted to cater for routine manual maintenance, routine mechanised maintenance, periodic maintenance and mechanical imprest activities on several District Roads using Road gangs and the force Account mechanism. However, the district received UGX.470, 118,922(99.7%) resulting into a deficit of UGX.1, 476,528 the deficit constituted 0.3% of the budgeted amount.
262
-
263
-
264
-
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
-
273
- 2.2 Status of Implementation
274
-
275
- A review of planned outputs against actual performance is as shown in appendix II
276
-
277
- 2.2.1 Routine Manual Maintenance
278
-
279
- A total of 322.6 kms at an estimated cost of UGX.98, 175,796 was planned to be undertaken. However, audit revealed that 303kms were actually undertaken at a cost of UGX.63,756,444 leading to a shortfall of 19.6km in length and an unspent balance of UGX.17,955,276 (18%).
280
-
281
- On inspection, it was observed that all the planned roads were worked on other than Awac – Paibona Road (19.6Km). The Acting District Engineer explained that the road was in a very poor state that could not be handled by Road Gangs and the District roads committee (DRC) decided to rollover the road to be maintained in F/Y 2018/19 under periodic mechanised maintenance.
282
-
283
- I advised the Accounting Officer to always ensure proper planning to ensure effective service delivery.
284
-
285
- 2.2.2 Routine mechanized maintenance
286
-
287
- A total of 58.5 kms at an estimated cost of UGX. 229,076,844 was planned to be revealed 59.4 kms were actually undertaken at a cost of coverage of 0.9kms in road length.
288
-
289
- that works were well implemented as shown in
290
-
291
- undertaken. However, audit UGX. 229,077,320 leading to extrainspection, it was observed pictures below:On
292
- Section of Negri-Paiminano-Lalem road Section of Pageya-Omel road
293
-
294
-
295
-
296
-
297
-
298
-
299
-
300
-
301
-
302
-
303
-
304
-
305
-
306
-
307
- 3.0 Contingent Liability
308
-
309
- Included in the statement of contingent liabilities and guarantees on page 41 is UGX.6, 000,000,000 relating to damages awarded by court for unlawful dismissal of Parish Chiefs by the district. Consequently, a number of district assets have been auctioned as a result of accumulated domestic arears arising out of court cases.
310
-
311
- The Accounting Officer explained that the negotiations were underway with the relevant stakeholders to have the liability reduced.
312
-
313
- I advised the Accounting Officer to engage the Ministry of Finance Planning And Economic development and the Ministry of Local Government to make a budget provision for clearing the outstanding domestic arrears.
314
-
315
- 4.0
316
-
317
- Unpaid Pension and Gratuity Arrears
318
-
319
- Included in the statement of Financial Position on page 15 and note 23 of the financial statements is UGX.697,871,140 in respect of Pension and gratuity Arrears. The accumulation of pension and gratuity arrears exposes challenges to the retired civil servants while delayed settlement of salary arrears demotivates staff. The Accounting Officer explained that UGX.33, 417,443 of the outstanding Arrears had been cleared but in the system, the amount had not yet been offset. He further indicated that the outstanding arrears would be cleared when budget provision is made by MoFPED.
320
-
321
- 5.0 Payables
322
-
323
- Included in the figure for payables in the statement of Financial Position on page 15 and note 22 on page 34 of the Financial Statements is UGX.1,191,005,956 relating to trade creditors, sundry creditors and withholding tax. Included in the sundry creditors is UGX.266, 421,925 relating to completed NUDEIL projects that remained unpaid pending approval by USAID dating as far back as 2010. Outstanding obligations expose the district to the risk of litigation and its associated costs.
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
-
335
- 6.0
336
-
337
- Incomplete and abandoned works
338
-
339
- 6.1
340
-
341
- Incomplete renovation and expansion of OPD in Lugore HCII Palaro Sub County
342
-
343
- The district signed a contract with M/S Deg Bedo Co Limited for renovation and expansion of OPD in Lugore HCII Palaro Sub County under contract reference no Gulu508/Wrks/17-18/00005 at a contract sum of UGX.47,558,600 with a start and end date of 3 rd May 2018 and 30 th June 2018 respectively.
344
-
345
- However, audit inspection carried out on 24 th October 2018 revealed that the project was incomplete and the contractor had abandoned the site as shown in the pictures below;
346
-
347
-
348
- Abandoned contractor items in one of the incomplete rooms.
349
- Front view of the OPD Back view of the OPD
350
-
351
-
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
-
360
-
361
-
362
-
363
-
364
- scope work to fit within the available funds and the outstanding works were rolled over to financial year 2018/2019.
365
-
366
- I advised the Accounting Officer to adequately plan and budget for works to ensure timely service delivery.
367
-
368
- 6.2
369
-
370
- Incomplete/Abandoned Low Cost Sealing of Laroo - Pageya Road 2 Km
371
-
372
- The district awarded a contract to Pehan Construction Ltd for Low Cost Sealing of Laroo- Pageya Road 1 Km section at a contract sum of UGX.498,646,112 funded by RTI under procurement reference No Gulu508/wrks/2017-18/00008 with a start and end date of 31 st May 2018 and 30 th June 2018 respectively.
373
-
374
- However, audit inspection conducted on 25 th October 2018 revealed the following lapses;
375
-
376
- - The project was not complete yet its contract end date had long expired with no evidence of contract extension.
377
- - No billboards were raised in respect of the project and no response was obtained to the effect. In this case the roads inspector explained that they were yet to be raise by the contractor.
378
- - Environmental concerns had not been addressed since trees had not been planted along the road as provided for in the Bills of Quantities.
379
- - The main activities that were thoroughly done were bush clearing, road reshaping and road base construction.
380
- - It was noted that the contractor had put primer on some section of the road (0.5Km from Laroo to Pageya) but did not spread/cover it with stone chippings and as a result, the primer had been washed away.
381
- - The actual distance where bush clearing, road reshaping and base construction done was only 0.9Km not 1km as planned.
382
- - The procurement action file and contract management file were not availed and as a result, the contract supervisor could not be identified and interviewed. The amount for design and supervision worth UGX.42, 776,407 had been fully paid yet the contractor had only performed one part of the contract; that is design but supervision had not been fully performed.
383
- - The absence of the contractor on site and evidence of on-going works was a clear indication that the project had been abandoned as seen in the pictures below;
384
-
385
-
386
-
387
-
388
-
389
-
390
-
391
-
392
-
393
-
394
-
395
- Area meant to be sealed along the contracted road
396
-
397
- Source:
398
-
399
- Field
400
-
401
- Inspection on 25/10/2018
402
-
403
- Section of the road where work was partially done
404
-
405
- The delayed completion of works not only leads to waste of government resources but also hampers service delivery to the communities. The Accounting Officer explained that the contract had been extended for five (05) months to allow the contractor complete the works but no evidence was availed to confirm the extension.
406
-
407
- I advised the Accounting Officer to expedite the process of the project completion for timely service delivery. 7.0
408
-
409
- Non-Disbursement of YLP funds for financial year 2017/18
410
-
411
- Section 2 of the project funds access criteria document states that the YLP Support will be accessed by Youth Groups that will have expressed interest, passed the beneficiary selection criteria, and generated viable projects that are approved by the District Technical Planning Committee.
412
-
413
- It was observed that the 39 th disbursement of UGX.69,515,000 for FY 2017-18 that was released by the Ministry of Gender, Labour and Social Development to the district YLP Account (No.07547680004-Bank of Africa) on 8 th May, 2018 had not been disbursed to the respective approved youth interest groups by the year end and by the time of audit (October 2018) as shown in Appendix III:
414
-
415
-
416
-
417
-
418
-
419
-
420
-
421
-
422
-
423
-
424
-
425
- I advised the Accounting Officer to streamline the disbursement process and ensure timely disbursement of funds to the approved groups.
426
-
427
- 8.0
428
-
429
- Non-Assessment of Taxable Revenue
430
-
431
- Paragraph 4.3 of Local Government Financial and Accounting Manual 2007 provides that the Chief Executive should carry out proper assessment of the council’s revenue regularly. In order for proper assessment to be carried out, the process should start with the enumeration exercise conducted by a team of enumerators who should record all the sources of income for each individual tax payer in the district.
432
-
433
- It was however observed that there was no evidence that revenue enumeration and assessments were carried out for all revenue sources. This therefore implies that the budgeted local revenue of UGX.606, 755,700 was not informed.
434
-
435
- Consequently, the council was unable to establish and disclose the amount for local revenue billed during the year in the statement of Arrears of revenues accompanying the financial statements.
436
-
437
- The Accounting Officer attributed this to staffing gaps mainly for enumerators (the Parish Chiefs) and low capacity of the enumerators since they were not trained on their roles.
438
-
439
- I advised the Accounting Officer to ensure that proper assessment of revenue sources is regularly carried out to enable fair estimates to be made.
440
-
441
- 9.0 Summary of exceptions raised in the PPDA audit report of the district for the financial year ended 30 th June, 2018. PPDA carried out a procurement audit and the exceptions are included in appendix
442
-
443
-
444
-
445
-
446
-
447
-
448
-
449
-
450
-
451
-
452
-
453
- In connection with my audit of the financial statements, my responsibility is to read the other information and, in doing so, consider whether the other information is materially consistent with the financial statements or my knowledge obtained in the audit, or otherwise appears to be materially misstated. If, based on the work I have performed, I conclude that there is a material misstatement of this other information, I am required to report that fact. I have nothing to report in this regard.
454
-
455
- Management Responsibilities for the Financial Statements
456
-
457
- Under Article 164 of the Constitution of the Republic of Uganda, 1995 (as amended) and Section 45 of the Public Finance Management Act, 2015, the Accounting Officer is accountable to Parliament for the funds and resources of Gulu District Local Government.
458
-
459
- The Accounting Officer is also responsible for the preparation of financial statements in accordance with the requirements of the Local Governments Financial and Accounting Manual, 2007 and the Public Finance Management Act 2015 and for such internal control as management determines necessary to enable the preparation of financial statements that are free from material misstatement whether due to fraud or error. In preparing the financial statements, the Accounting Officer is responsible for assessing the District’s ability to continue as a going concern, disclosing, as applicable, matters related to going concern and using the going concern basis of accounting, unless the Accounting Officer has a realistic alternative to the contrary.
460
-
461
- The Accounting Officer is responsible for overseeing the District’s financial reporting process.
462
-
463
- Auditor General’s Responsibilities for the audit of the Financial Statements
464
-
465
- My objectives are to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error, and to issue an auditor’s report that includes my opinion. Reasonable assurance is a high level of assurance, but is not a guarantee that an audit conducted in accordance with ISSAIs will always detect a material misstatement, when it exists. Misstatements can arise from fraud or error and are considered material if, individually or in aggregate, they could reasonably be expected to influence the economic decisions of users, taken on the basis of these financial statements.
466
-
467
- - Identify and assess the risks of material misstatement of the financial statements, whether due to fraud or error, design and perform audit procedures responsive to
468
-
469
-
470
-
471
-
472
-
473
-
474
-
475
-
476
-
477
-
478
-
479
- those risks, and obtain audit evidence that is sufficient and appropriate to provide a basis for my opinion. The risk of not detecting a material misstatement resulting from fraud is higher than for one resulting from error, as fraud may involve collusion, forgery, intentional omissions, misrepresentations, or the override of internal control.
480
-
481
- - Obtain an understanding of internal control relevant to the audit in order to design audit procedures that are appropriate in the circumstances, but not for the purpose of expressing an opinion on the effectiveness of the Company’s internal control.
482
- - Evaluate the appropriateness of accounting policies used and the reasonableness of accounting estimates and related disclosures made by the management.
483
- - Conclude on the appropriateness of management’s use of the going concern basis of accounting and, based on the audit evidence obtained, whether a material uncertainty exists related to events or conditions that may cast significant doubt on the Company’s ability to continue as a going concern. If I conclude that a material uncertainty exists, I am required to draw attention in my auditor’s report to the related disclosures in the financial statements or, if such disclosures are inadequate, to modify my opinion. My conclusions are based on the audit evidence obtained up to the date of my auditor’s report. However, future events or conditions may cause the Company to cease to continue as a going concern.
484
- - Evaluate the overall presentation, structure and content of the financial statements, including the disclosures, and whether the financial statements represent the underlying transactions and events in a manner that achieves fair presentation.
485
-
486
- I communicate with the Accounting Officer regarding, among other matters, the planned scope and timing of the audit and significant audit findings, including any significant deficiencies in internal control that I identify during my audit.
487
-
488
-
489
-
490
-
491
-
492
-
493
-
494
-
495
-
496
-
497
-
498
- the adverse consequences of doing so would reasonably be expected to outweigh the public interest benefits of such communication.
499
-
500
- Other Reporting Responsibilities
501
-
502
- In accordance with Section 19 (1) of the National Audit Act, 2008, I report to you, based on my work described on the audit of Financial Statements, that; except for the matters raised in compliance with legislation section below, and whose effect has been considered in forming my opinion on financial statements, the activities, financial transactions and information reflected in the financial statements that have come to my notice during the audit, are in all material respects, in compliance with the authorities which govern them.
503
-
504
- REPORT ON THE AUDIT OF COMPLIANCE WITH LEGISLATION
505
-
506
- The material findings in respect of the compliance criteria for the applicable subject matters are as follows;
507
-
508
- 10.0 Management of Natural Resources
509
-
510
- 10.1 Unlicensed Activities on Natural resources According to Sec. 38(3) of the National Environment Management Act, the authority may, in consultation with the lead agency and the district environment committee, declare any wetland to be a protected Wetland, thereby excluding or limiting human activities in that wetland while Sec.36 provides for restrictions on the use of wetlands and requires a person to obtain written approval from the authority given in consultation with the lead agency.
511
-
512
- It was observed that the district does not have a register of the licenses issued for activities carried out on gazetted wetlands. Audit inspection revealed that there were a number of activities illegal carried out on various wetlands and forests in form of cultivations, constructions and waste dumping.
513
-
514
-
515
-
516
-
517
-
518
-
519
-
520
-
521
-
522
-
523
-
524
- I advised the Accounting Officer to initiate measures to ensure that utilisation of natural resources is in accordance with the law.
525
-
526
- 11.0 Establishment of the Physical Planning Committee. Section 9 of the Physical Planning Act 2010 requires each district council to establish a district physical planning committee, which shall consist of among other members a physical planner in private practice appointed by the council on the advice of the secretary to the Board.
527
-
528
- However, it was observed that although the physical planning committee had been established and members appointed, the committee lacked a physical planner in private practice who would be responsible for developing physical plans as required by law. Lack of a qualified physical planner can result into preparation of poor physical plans.
529
-
530
- The Accounting Officer explained that these people are few in the job market and attracting them is difficult. He added that poor remuneration in the civil service makes it hard to attract them but he promised that the district would look for the best way to handle the situation.
531
-
532
- I advised the Accounting Officer to ensure that a physical planner in private practice is appointed as required by law. 11.1 Performance of the Physical Planning Committee Section 9 of the Physical Planning Act,2010 outlines the functions of the Physical planning Committee which include among others: preparation of physical development plans; recommending to the district council subdivision of land which may have a significant impact on contiguous land or be in breach of any condition registered against a title deed in respect of such land; approving development applications relating to housing estates, industrial location, schools, petrol stations, dumping sites or sewerage treatment, which may have injurious impact on the environment; hearing appeals lodged by persons aggrieved by decisions made by the district physical planner and lower local physical planning committees; and exercising supervisory powers over all lower planning committees.
533
-
534
-
535
-
536
-
537
-
538
-
539
-
540
-
541
-
542
-
543
-
544
- discuss about the operationalization of the committee. No other activities were performed by the committee other than training of the lower physical planning committees that had just been done.
545
-
546
- Poor performance of the committee denies the community timely accessibility of services rendered by the committee.
547
-
548
- The Accounting Officer in his response stated that all activities of the sector were funded under local revenue which was not forth coming.
549
-
550
- I advised the Accounting Officer to equally prioritize the committee when allocating the available resources.
551
-
552
- 11.2 Non Budgeting for the Physical Planning Committee Activities
553
-
554
- PART VII, Section 44 of the Physical Planning Act, 2010 provides that all activities of the physical planning committees shall be financed by the local government finances.
555
-
556
- However, review of the budget and financial statements of the Council revealed that there was no budget and therefore no expenditure on activities of the committee. Failure to fund activities of the Committees adversely affects their operations.
557
-
558
- The Accounting Officer explained that more resources had been allocated to facilitate the activities of the district physical planning committee in the 2019/2020 FY budget.
559
-
560
- I advised the Accounting Officer to budget for and fund planned activities of the committee.
561
-
562
- 12.0 Management of Road Equipment 12.1 Failure to maintain road equipment records
563
-
564
-
565
-
566
-
567
-
568
-
569
-
570
-
571
-
572
-
573
-
574
- I advised the Accounting Officer to ensure that road equipment records are put in place in accordance with the regulations.
575
-
576
- 12.2 Non-functional/ Grounded Equipment
577
-
578
- Section 4h of the guidelines for care and management of road equipment in government ministries, departments and agencies, by ministry of works and transport 2017 provides a step-by-step Repairs Management Process to be followed by users of road equipment.
579
-
580
- It was however observed that two equipment were grounded and required major repairs as shown in the pictures below;
581
-
582
-
583
-
584
- Grass grown out of the grounded wheel loader Grounded Grader Reg. UG 1830W
585
-
586
-
587
-
588
-
589
- It was further noted that the equipment is not properly maintained as there were no defects reports, no reports to indicate that regular checks are carried out, logbooks to guide in utilization were lacking and no system of quality assurance checks carried out either before or after repairs.
590
-
591
- An interview with the Assistant Engineering Officer revealed that the funds received were inadequate to handle the required major repairs of the equipment.
592
-
593
-
594
-
595
-
596
-
597
-
598
-
599
-
600
-
601
-
602
-
603
- I advised the Accounting Officer to expedite the process of repairing the grounded equipment’s.
604
-
605
- 13.0 Status of Basic Medical Equipment
606
-
607
- Section 5.17 of the Service standards & Service delivery standards for the Health Sector, 2016 requires that medical equipment is available and properly maintained to meet the needs of the patient population. However, a review of Awach Health Centre IV departments’ reports and audit inspection revealed that a number of medical equipment was lacking and some was not in fair condition as shown in Appendix V.
608
-
609
- Consequently, patients are referred to distant Facilities to receive the same services like caesarean section, circumcision and other operations that could be done by a health Centre IV.
610
-
611
- The Accounting Officer promised to plan and forward the request to the National Medical Stores for consideration.
612
-
613
- 13.1
614
-
615
- Failure to record medical equipment in the district assets register
616
-
617
- The Local Government Financial and Accounting Regulations 2007 section 59 (e) requires local councils to maintain Fixed Assets registers, and this is expounded by the Local Governments Financial and Accounting Manual 2007 section 2.3.1.4. (2).
618
-
619
- However, review of the fixed assets register revealed the medical equipment and other assets at the health facility level (Awach HC IV) were not recorded therein. The Accounting Officer provided no response to the issue.
620
-
621
-
622
-
623
-
624
-
625
-
626
-
627
-
628
-
629
-
630
-
631
- Contrary to the above, it was noted that procurements worth UGX 356,707,842 lacked appropriate supporting documentation as shown in Appendix VI.
632
-
633
- There is a possibility that some procurement procedures were not followed during the procurement processes. The accounting officer stated that at the time of audit these documents were still with PPDA.
634
-
635
- I advised the Accounting Officer to always keep documents in their principle place.
636
-
637
- John F.S. Muwanga
638
-
639
- AUDITOR GENERAL
640
-
641
- KAMPALA
642
-
643
- 17 th December, 2018
644
-
645
-
646
-
647
-
648
-
649
-
650
-
651
-
652
-
653
-
654
-
655
- Appendix I: Noncompliance with the repayment schedule
656
-
657
- S/N Project Name Code Disbursed Amounts (Ushs) Amount Recovered Perce ntage Reco very Outstanding Amount Percent age Outsta nding
658
- 1 Unyama B Wilobo Wire Ox- Cultivation Project N091060304001 4,700,000 1,650,000 35 3,050,000 65
659
- 2 Agung Atem Lwak Youth Ox- Cultivation Project N091060407001 7,691,000 4,150,000 54 3,541,000 46
660
- 3 Kal Center Lonyo Tek Vegetable Growers N091050107001 5,000,000 0 0 5,000,000 100
661
- 4 Cwinyi Youth Fish Farming GroupOilong Jing N092020604001 4,550,000 0 0 4,550,000 100
662
- 5 Lugore Piggery Youth Group N091040302001 7,527,000 0 0 7,527,000 100
663
- 6 Corner Ward Ribbe Aye Teko Piggery Youth Group N091030204001 8,000,000 3,659,650 45.7 4,340,350 54.3
664
- 7 Agoro Opar Pi Bulu Piggery Youth Group N091040101001 8,877,000 0 0 8,877,000 100
665
- 8 Lapeta Vision Ahead Youth Piggery Project N091060104001 5,034,000 0 0 5,034,000 100
666
- 9 Te-Ogali Piggery Project N092060504001 8,100,000 0 0 8,100,000 100
667
- 10 Pato Ngecani Piggery Project N092010207001 8,280,000 2,000,000 24.2 6,280,000 75.8
668
- 11 Peyweka PiggeryProjectOwak Cac N092060104001 8,200,000 1,250,000 15.3 6,950,000 84.7
669
- 12 Loyoboo A Utem Gum Youth Piggery Project N091060203001 6,238,000 300,000 4.6 5,938,000 95.4
670
- 13 Piggery ProjectOwak Youth N091020102001 6,500,000 0 0 6,500,000 100
671
- 14 Gweno Twom Tampi Anyim Brick Laying N092060203001 4,500,000 800,000 17.7 3,700,000 82.3
672
-
673
-
674
-
675
-
676
-
677
-
678
-
679
-
680
-
681
-
682
-
683
-
684
-
685
-
686
- Youth Group
687
- 15 Ibar Ribe Ber Produce Buying & Selling Youth Group N092010301001 7,100,000 1,050,000 14.7 6,050,000 85.3
688
- 16 Atyang Wa Roco Kwo Produce Buying & Selling Group N092030101001 8,200,000 3,500,000 42.7 4,700,000 57.3
689
- 17 Oroko Wapwoyo Lutela Produce Buying & Selling Group N091040203001 8,120,000 6,800,000 83.7 1,320,000 16.3
690
- 18 Boke Ber Wa Ool Ki Lego Jami Youth Goat Rearing Group N091030402001 8,145,000 2,513,200 30.8 5,631,800 69.2
691
- 19 Laminadera Youth Crop Farming N092020406001 6,468,000 4,200,000 65 2,268,000 35
692
- 20 Labworomor Youth Farming Group N092020202001 6,320,000 500,000 8 5,820,000 92
693
- 21 Cet Kana Youth Piggery Project N091020204001 8,676,000 960,000 11 7,716,000 89
694
- 22 Youth Masonry & Brick Laying ProjectLawiya Dul N091020303001 6,445,000 1,600,000 25 4,845,000 75
695
- 23 Youth GrindingMilling GroupRom Yele Pi Kwo N092020509001 6,505,000 0 0 6,505,000 100
696
- 24 Lukodi Youth Produce Buying & Selling Project N091020601001 6,199,000 1,300,000 21 4,899,000 79
697
- 25 Ryemocan Youth Produce Dealers ProjectLatin Nyer N092040206001 7,460,000 500,000 6.7 6,960,000 93.3
698
- 26 Youth Produce Buying & Selling ProjectOpit Mayot Peke N092040505001 8,750,000 200,000 23 8,550,000 77
699
- 27 Opwach Dii Cwinyi Youth Produce Buying & Selling Project N092040104001 9,460,000 202,500 2.1 9,257,500 97.9
700
- 28 Wan Youth Produce Buying & Selling ProjectKeto Wutem N092030403001 7,998,000 6,000,000 75 1,998,000 25
701
-
702
-
703
-
704
-
705
-
706
-
707
-
708
-
709
-
710
-
711
-
712
-
713
-
714
-
715
- 29 Hima Pe Nongi Labedo Youth Produce Buying & Selling Project N092030308001 7,975,000 2,350,000 29.4 5,625,000 70.6
716
- 30 Oguru Wor Tweroni Youth Produce Buying & Selling Project N091010401001 8,621,500 2,043,000 23.7 6,578,500 76.3
717
- 31 Acut Omer Youth Produce Buying & Selling Project N091010306002 8,642,800 6,500,000 75.2 2,142,800 24.8
718
- 32 Payuta Straight Talk Youth Group N091010203001 8,050,000 5,919,000 73.5 2,131,000 26.5
719
- 33 Paminano Produce Buying & Selling N091020702001 8,020,000 6,127,500 76.7 1,892,500 23.3
720
- 34 Obwolo Mic Pa Lacwec Youth Livestock Project N092020604001 8,000,000 4,000,000 50 4,000,000 50
721
- 35 Camp Tek Youth Animal Buying & SellingAbili Bedo I N092020306001 8,150,000 0 0 8,150,000 100
722
- 36 Kalo Ox- Cultivation ProjectAwoonyim Wang N091050302001 8,870,000 200,000 2.2 8,670,000 97.8
723
- 37 Aremo A Can Yela Animal Traction Youth Group N092010404001 7,100,000 650,000 9.2 6,450,000 80.8
724
- 38 Horti Cultural Crop Production GroupAcwera United N092010509002 6,800,000 1,000,000 14.7 5,800,000 85.3
725
- 39 Piggery ProjectPatalira Kica Ber N092060306001 7,464,000 5,950,000 79.7 1,514,000 20.3
726
- 40 Piggery ProjectAdak Alliance N091050305001 9,215,000 0 0 9,215,000 100
727
- 41 Paminmel Agro Forestry /Tree Nursery Project N091020503001 8,250,000 0 0 8,250,000 100
728
- 42 Dino Aol Kilonge Produce Buying & Selling Group N092050207001 7,600,000 2,450,000 32.2 5,150,000 67.8
729
- 43 Agro-BusinessGroupOdek Centre N092050404002 7,400,000 850,000 11.4 6,550,000 88.6
730
- 44 Waryemo Can Produce Buying & Selling GroupPageya N091010103001 7,332,000 1,240,000 17 6,092,000 83
731
-
732
-
733
-
734
-
735
-
736
-
737
-
738
-
739
-
740
-
741
-
742
-
743
-
744
-
745
- 45 Pok Ogali Youth Ox-Cultivation Project N091040303001 6,758,000 0 0 6,758,000 100
746
- 46 Lakwaya Ox- Cultivation Youth Project N092040404001 6,450,000 1,300,000 20.1 5,150,000 79.9
747
- 47 Kiteny Tam Pi Diki Youth Piggery Project N091040301001 8,425,000 0 0 8,425,000 100
748
- 48 Lajwatek Progressive Youth Piggery Project N092020502001 7,550,000 1,000,000 13.2 6,550,000 86.8
749
- 49 Oguru Produce Buying & Selling N091020304001 7,054,200 4,130,000 58.5 2,924,200 41.5
750
- 50 Kulukeno Produce Buying & Selling N091020501001 5,000,000 2,000,000 40 3,000,000 60
751
- Wanglobo Produce Buying & Selling N092040305001 4,865,000 0 0 4,865,000 100
752
- Total 372,635,500 90,844,850 24.4 281,790,650 75.6
753
-
754
-
755
-
756
-
757
- 51
758
-
759
-
760
-
761
-
762
-
763
-
764
-
765
-
766
-
767
-
768
-
769
- Appendix II: Evaluation of Planned Output Uganda Road Fund Budget (URF)
770
-
771
- Met hod Activity/R oad Name Planned Output/ Quantity Actual Output/ Quantity Variance in Output/ quantity Amount Budgeted (UGX)) Amount Released (UGX) Amount spent (UGX) Variance (UGX) Mgt Explanation Audit Remarks
772
- Periodic Road Maintenance
773
- N/A
774
- Routine Mechanised
775
- 1 Akonyibedo- Omoti 17 17 0.00 69,540,571 69,540,571 69,573,000 - 32,429
776
- 2 Cooper Cetcan- Pugwinyi 15.5 16 -0.50 65,000,000 65,000,000 64,973,800 26,200
777
- 3 Pageya Omel 11 11.2 -0.20 41,509,226 41,509,226 41,503,500 5,726
778
- 4 Negri- Paiminano- Lalem 6.5 6.3 0.20 42,155,000 42,155,000 42,155,000 -
779
- 5 Paicho- Corner Mega 8.5 8.9 -0.40 10,872,047 10,872,047 10,872,020 27
780
- 58.5 59.4 -0.9 229,076,844 229,076,844 229,077,320 - 476
781
- Routine manual
782
- 1 Abera- Awach 19.20 19.20 0 5,843,072 5,843,072 5,843,072 0
783
- 2 Akonyibedo- Omoti 22.50 22.50 0 6,847,352 6,847,352 6,847,352 0
784
- 3 Awach-Arut 12.40 12.40 0 3,773,652 0
785
-
786
-
787
-
788
-
789
- 27
790
-
791
-
792
-
793
-
794
-
795
-
796
-
797
-
798
-
799
-
800
-
801
- 3,773,652 3,773,652 00
802
- 4 Awach- Paibona 19.60 0 19.6 5,964,804 5,964,804 0 5,964,804 Due for routine. The road was a very poor state that could not be improved used manual maintenance.
803
- 5 Bardege- Lalem- Pugwinyi 31.80 31.80 0 9,677,588 9,677,588 9,677,588 0
804
- 6 Cwero- Omel- Lapuda 18.80 18.80 0 5,721,344 5,721,344 5,721,344 0
805
- 7 Coope- Monroc 9.60 9.60 0 2,921,536 2,921,536 2,921,536 0
806
- 8 Coope- Cwtkana- Pugwinyi 17.50 17.50 0 5,325,716 5,325,716 5,325,716 0
807
- 9 Cwero- Omel-Minja 27.00 27.0 0 8,216,820 8,216,820 0 8,216,820 Done by ministry of works
808
- 10 koco Angwen- Corner pa Oteri 4.90 4.90 0 1,491,200 1,491,200 1,491,200 0
809
- 11 Laroo- Pageya 4.20 4.20 0 1,278,172 1,278,172 0 1,278,172 Under Low cost sealing
810
- 12 Laroo- Unyama 4.00 4.00 0 1,217,308 1,217,308 0 1,217,308 Done using mechanised routine
811
-
812
-
813
-
814
-
815
- 28
816
-
817
-
818
-
819
-
820
-
821
-
822
-
823
-
824
-
825
-
826
-
827
- 13 Lukome- Gwdendiya 13.00 13.00 0 3,956,248 3,956,248 3,956,248 0
828
- 14 c 9.00 9.00 0 2,738,940 2,738,940 2,738,940 0
829
- 15 Pageya Omel 37.00 37.00 0 11,260,088 11,260,088 11,260,088 0
830
- 16 Paicho- Corner Mega 8.50 8.50 0 2,586,776 2,586,776 2,586,776 0
831
- 17 Paicho- Patiko 22.40 22.40 0 6,816,920 6,816,920 6,816,920 0
832
- 18 Palaro-Mede 25.50 25.50 0 7,760,332 7,760,332 7,760,332 0
833
- 19 Patiko HQ- Gwendiya Market 11.50 11.50 0 3,499,756 3,499,756 3,499,756 0
834
- 20 Unyama- Pageya 4.20 4.20 0 1,278,172 1,278,172 0 1,278,172 Done by China railways No. 6
835
- 322.6 263.6 19.6 98,175,796 98,175,796 63,756,444 17,955,276 The Amount in variance was used to implement culvert installation along Arut – Awach road.
836
- Transfer to Sub Counties
837
-
838
-
839
-
840
-
841
- 29
842
-
843
-
844
-
845
-
846
-
847
-
848
-
849
-
850
-
851
-
852
-
853
- Community Access Roads (CAR) Road Bottle Neck Improvemen t 64.7 N/A N/A 46,331,38 4 46,331,384 46,331,384 0 These funds will be audited independently in sub counties. Thus, verification of actual output could not be done. However, transfer could not be confirmed since the transfer vouchers were not supported by acknowledgement receipts.
854
- Mechanical Imprest
855
- Mechanical Imprest N/A N/A N/A 69,611,430 69,611,430 57,306,578 12,304,852 Systems failure to process payment. Variance in mechanical imprest resulted into failure to maintain some vehicles and road equipments.
856
- DE Office operation expenses
857
- Office operation in DE Office N/A N/A N/A 28,400,000 28,400,000 26,635,457 1,764,543 All activities in District Engineers office were implemented
858
-
859
-
860
-
861
-
862
- 30
863
-
864
-
865
-
866
-
867
-
868
-
869
-
870
-
871
-
872
-
873
-
874
- Appendix III: Non- disbursement of Youth funds for FY 2017-18
875
-
876
- Sub County Names of the YIGs Activity forimplementation Number of beneficiaries. Amount to be disbursed
877
- Unyama Coopil MIC Pa Lacwer Youty Ox- Traction Agriculture 10 8,400,000
878
- Patiko kacel Ox-Pajaa WatekYouth cultivation Agriculture 10 8,410,000
879
- Awach Oguru Bod Ki Gen Animal Traction. Agriculture 15 7,390,000
880
- Bungatira Twon Okun Ribbe Ber youth Farmers Agriculture 10 7,795,000
881
- Unyama Oguru Tic Ryoma Can Youth Piggery Group. Agriculture 12 7,900,000
882
- Unyama Unyama A Diro Pe Rora Youth Poultry group Agriculture 11 8,580,000
883
- Awach Boli Pi Cing Maleng grinding Mill. Industry/Agro 10 6,840,000
884
- Patiko AnyodweProducersYouth Trade 12 7,100,000
885
- Patiko Angany Can Kwoki Youth Produce Traders Trade 10 7,100,000
886
- Total 100 69,515,000
887
-
888
-
889
-
890
-
891
-
892
-
893
-
894
-
895
-
896
-
897
-
898
-
899
-
900
-
901
- Appendix IV: PPDA Procurement Audit Findings
902
-
903
- No Finding Risk/Implication Recommendation
904
- 1. Management of works under force account mechanism: On 24 th November 2017, Gulu Municipal Council’s Contracts Committee approved works estimated at UGX 224,359,800 to be implemented under force account mechanism for the following roads: i. Akonyi Bedo-Omoti road 17Km out of 22.5Km at the cost of UGXii. Pageya –Omel road 11KM out of 37Km at a total cost of UGXiii. Coope –Cetkana –Pugwinyi road 15.5Km out of 17.5Km at a total cost of UGX 64,973,800; iv. Negri –Paminano Road 6.5Km out 6.5Km at a total cost of UGXv. Paicho –Corner –Mega 8.5Km out of 8.5Km at the total cost of UGX64,857,800; 41,505,500;42,155,000; and 10,867,000.The Authority noted the following; a) There was no evidence of any procurement process for inputs required for works except fuel contrary to Regulation 4 of the PPDA (Force Account Mechanism) Regulations, 2014.E.g. building materials, fuel, Traxcavator & Low Bed. b) The Authority also observed that throughout the financial year there was no report submitted to the office of the Accounting Officer on works undertaken using the force account mechanism contrary to Regulation 5 (5) of the PPDA (Force Account Mechanism) Regulations, 2014. Mismanagement of resources allocated for works under the force account mechanism. The Accounting Officer should ensure procurement procedures are followed when procuring inputs under force account.that
905
- 2. Deficiency and non-performance of the Procurement Unit: During the audit, the Authority made the following observations a) The Procurement and Disposal Unit failed to submit quarterly reports Failure to procurements hinders accountability.report on undertaken The Chief Administrative Officer should strengthen the internal controls on record
906
-
907
-
908
-
909
-
910
- 32
911
-
912
-
913
-
914
-
915
-
916
-
917
-
918
-
919
-
920
-
921
-
922
- on procurement and disposal for the entire financial year 2017/2018 as per the guideline issued by the Authority. The quarterly reports were later submitted on 7 th September 2018 without the respective Contracts Committee minutes. b) There were three hundred ninety eight (398) procurement transaction payments worth UGX 758,059,547 in the IFMS purchase register which were entered by the Procurement Officer but did not follow the pre-requisite procurement procedures such as raising requisitions, conducting a bidding process, evaluation of bids and issuance of call off orders for those under framework arrangement as required under the PPDA Act, 2003 and Local Governments (PPDA) Regulations, 2006. These included among others; Newspaper adverts, accounting books, banana suckers, blankets and bed sheets for nodding, book shelves/filing cabinets, borehole pump parts, materials, fuel, furniture, goods for agricultural extension, grader blade, hire of road equipment, laptop, local materials, meals and refreshments, motorcycle repair, mowing, payment for gravel, camera, vehicle repair and service, food for nodding, tonner and vehicle tyres. c) During the audit, the Procurement Officer informed the auditors that there were five (5) Contracts Committee sittings during the financial year under review, only three sets of minutes were on the Contracts Committee minute file. d) All the sampled procurement action files reviewed during the audit were incomplete despite the Entity being notified early hence an indicator of poor record keeping. e) Furthermore there were numerous inconsistencies in the procurement action files which are discussed in detail in this management letter. keeping Procurement Unit.within the and Disposal
923
- 3. Suspected fraudulent payments for repair of motorcycles: The Authority found a series of payments entered by the Procurement Officer in the IFMS purchase register worth UGX 8,330,000 attributed to repair of motorcycles that appeared fictitious and lacked evidence to prove that the services were required and procured in accordance with the Local Loss of money and citizens denied service delivery. The Chief Administrative Officer should farther investigate and bring to book any persons found responsible for fraudulent activities
924
-
925
-
926
-
927
-
928
- 33
929
-
930
-
931
-
932
-
933
-
934
-
935
-
936
-
937
-
938
-
939
-
940
- Governments (PPDA) Regulations, 2006 and guidelines and fairly executed. Suspected fraudulent payment for repair of motorcycles GoU Departme Provider No. ntReport (UGX)Production Gene 490,000LG SOB i 2662Subject of Procuremen t Motorcycle repairMotorcycle repair -Oyet FredMotorcycle repairMotorcycle repairMotorcycle repairMotorcycle repairMotorcycle repair2664 Production Gene 490,000 ii 2665 Production Gene 490,000 iii 2666 Production Gene 490,000 iv 2657 Production Gene 490,000 v2658 Production Gene 490,000 viConstruction and Motor GarageConstruction and Motor GarageConstruction and Motor GarageConstruction and Motor GarageConstruction and Motor GarageConstruction and Motor GarageConstruction2659 Production Gene 490,000 vii including recovery of any lost funds.
941
- No.
942
- i
943
- ii
944
- iii
945
- iv
946
- v
947
- vi
948
- vii
949
-
950
-
951
-
952
-
953
- 34
954
-
955
-
956
-
957
-
958
-
959
-
960
-
961
-
962
-
963
-
964
-
965
- and Motor Garage viii 2660 Motorcycle Production Gene 490,000 repair Construction and Motor Garage ix 2661 Motorcycle Production Gene 490,000 repair Construction and Motor Garage x 2667 Motorcycle Production Gene 490,000 repair Construction and Motor Garage xi 2668 Motorcycle Production Gene 490,000 repair Construction and Motor Garage xii 2589 Repair Production Nile Energy 490,000 Motorcycle Limited xiii 2590 Repair Production Nile Energy 490,000 Motorcycle Limited xiv 2591 Repair Production Nile Energy 490,000 Motorcycle Limited xv 2592 Repair Production Nile Energy 490,000 Motorcycle Limited xvi 2593 Repair Production Nile Energy 490,000 Motorcycle Limited xvii 2727 Repair of Production Nile Energy 490,000 Motorcycle Limited
966
-
967
- Total
968
-
969
- 8,330,00
970
-
971
- 0
972
-
973
- 35
974
-
975
-
976
-
977
-
978
-
979
-
980
-
981
-
982
-
983
-
984
-
985
- 4. Suspected fraudulent evaluation of bids: The Authority found that in the following procurement transactions there were fraudulent actions as described below: a) Some of the bids that had been received were not evaluated. b) Some firms were not issued bidding documents but had bids being evaluated. c) Bids from some firms were evaluated without a record of being received and opened by the Entity.Fraudulent evaluation of bids No. Subject Amount (UGX)FindingRenovation of one block of four classrooms at Akonyibedo PS in Unyama Sub- CountyRenovation of water born toilet behind DHO office the district headquartersati.e.34,950,000 The record of bid opening had only one firm i.e. De-wats Company however, two more companies Beep Investment (U) Ltd & Denflo Construction Company Ltd were evaluated. 14,551,400 Out of the three bids that were received, only two bids of Asienjo General Enterprises (U) Ltd & Agresia Holdings Ltd were evaluated. The Bid of Fink Enterprises was not evaluated. iii Construction of 4 28,484,076 Out of the three bids that wereiii The Entity was exposed to a risk of unfair advantage being given to some firms at the cost of other potentially competent firms. The Chief Administrative Officer should compel the Procurement Officer to show cause as to why disciplinary action should not be taken against him.
986
-
987
-
988
-
989
-
990
-
991
-
992
-
993
-
994
- 36
995
-
996
-
997
-
998
-
999
-
1000
-
1001
-
1002
-
1003
-
1004
-
1005
-
1006
- stances drainable latrine with urinal at Lugore HC II in Labworomore Parish in Palaro Sub-county received, only the bid of Deg Bedo Company Ltd was evaluated. Bids submitted by Kica Ber General Traders Ltd and OCF Construction & General Merchandise Ltd were not evaluated. Deg Bedo Company was recommended award despite not complying with the required bid validity i.e. they proposed 30 days and the requirements was 90 daysLtd for
1007
- iv and of II inRenovation expansion Lugore HC OPD Labworomore Parish in Palaro Sub-county 47,558,600 Out of the three bids that were received, only the bid of Deg Bedo Company Ltd was evaluated. Bids submitted by Davico General Supplies & Construction (U) Ltd and Cumuni Holdings Ltd were not evaluated. Deg Bedo Company was recommended award despite not complying with the required bid validity i.e. they proposed 30 days and the requirements was 90 daysLtd for
1008
- v low sealing atDesign of cost Laroo-Pageya 45,068,000 Two bids i.e. from Techno Design Engineering Ltd and MBJ Technology Ltd were evaluated however there was no proof of their receipt and
1009
-
1010
-
1011
-
1012
-
1013
- 37
1014
-
1015
-
1016
-
1017
-
1018
-
1019
-
1020
-
1021
-
1022
-
1023
-
1024
-
1025
- subsequent bid opening.
1026
- vi 771 tree to subSupply of 1,950 passion fruits to production department mango seedlings Patiko county,under PMG and DDEG Funding Various rates While the evaluation report listed 4 firms that responded, only 2 were evaluated i.e. Amlo Holdings Ltd & Ibinoga Construction & General Merchandise. Latong & Sons Co. Ltd and Alabama Crown Ltd were not evaluated.
1027
- vi Construction fish pond Agonga Bungatira countyof in Parish, sub- 22,800,000 record of receipt had 3 firms however only one firm was evaluated i.e. Stanhope Construction And General Merchandise Ltd. AKA Construction and Ibinonga construction & general merchandise not evaluated.were
1028
- vii Deep borehole apron casting and hand pump installation of 7 boreholes in Awach, Paicho, Unyama, Patiko, Bungantira and Palaro sub-county 41,468,000 Whereas 2 bids were received only one i.e. that of Balcon Engineering was evaluated& the one of Agola Enterprises Ltd not evaluated.Ltd
1029
- viii borehole 7indrillingboreholesofDeep 85,904,000 Whereas bids from PMP Holdings Ltd & BM Watsan Holdings Ltd were evaluated,
1030
-
1031
-
1032
-
1033
-
1034
- 38
1035
-
1036
-
1037
-
1038
-
1039
-
1040
-
1041
-
1042
-
1043
-
1044
-
1045
-
1046
- Awach, Paicho, bids were not received from
1047
-
1048
- Bungatira, these firms. A bid was
1049
-
1050
- Unyama , Patiko received from Geobot Water
1051
-
1052
- & Palaro Sub- Engineering Services but not
1053
-
1054
- Counties evaluated.
1055
-
1056
- 39
1057
-
1058
-
1059
-
1060
-
1061
-
1062
-
1063
-
1064
-
1065
-
1066
-
1067
-
1068
- Appendix V: Status of Medical Equipment in Awach HC IV
1069
-
1070
- SN NAME OF EQUIPMENT QUANTITY USE/PURPOSE EXISTANCE CONDITION REMARKS
1071
- C/s sets (caesarean sets) 5 For C-Section operations 0 N/A Needed
1072
- Oxygen cylinders (large size) 3 For administration of Oxygen 2 Good More needed
1073
- Hernia sets 4 For operation and management of Hernia 0 N/A Needed
1074
- D&C sets 3 Used for dilatation and curettage 3 Good
1075
- MVA 3 For manual volume aspiration 3 Good
1076
- Ambu bag
1077
- 1. Neonatal 2 Used to provide positive pressure ventilation 2 Good
1078
- 2. Adult 2 Used to provide positive pressure ventilation 2 Good
1079
- Penguin sucker 2 Helps in clearing the babies airway 0 N/A Needed
1080
- Nasal oxygen prongs 10 Used to deliver supplementary oxygen 10 Good
1081
- Laparotomy set 2 Surgical incision into the abdomen for evacuation or preparation for surgery 0 N/A Needed
1082
- Pulse oximeter 2 Non-invasive method for monitoring oxygen levels 1 Good More needed
1083
- Suction machine
1084
- 1. Manual 1 Extraction of mucus and other fluids 1 Good
1085
-
1086
-
1087
-
1088
-
1089
-
1090
-
1091
-
1092
-
1093
-
1094
-
1095
-
1096
-
1097
-
1098
-
1099
- 2. Electric 1 Extraction of mucus and other fluids 1 Good
1100
- Boyle’s machine bp calf 5 For administering anaesthesia 0 N/A Needed
1101
- Anaesthetic trolley 1 For administering anaesthesia 1 Good
1102
- Oxygen concentrator 10 For administering oxygen 2 Good More needed
1103
- Portable operating light 2 Provide light during operations 2 Good
1104
- Laryngoscope 1 Used for examining the larynx 1 Good
1105
- Blood pressure machines[bp] 2 Measuring pressure 2 Good
1106
- Autoclave Good
1107
- 1. Electric 1 Used for sterilization 1 Good
1108
- 2. Non electric 1 Used for sterilization 1 Good
1109
- Steam steriliser 1 Sterilising medical equipment to get rid of bacteria and other pathogens 1 Good
1110
-
1111
-
1112
-
1113
-
1114
- Appendix VI: Missing records on Procurement Action files
1115
-
1116
- ReferenceNumberProcurement SubjectProcurementof Name of Provider/ Contractor Contract Value Remarks
1117
- Gulu508/wrks/2 017- 2018/000004 Deep drilling of 7 boreholes in Awach, Paicho, Bungatira, Patiko, Unyama and Palaro sub counties under DDEG and DWSCG funding Brottos (U) Ltd 85,904,000 Availability of funds not completed only 22.8m provided for one borehole under DDEG. Bid issue and receipt records not signed and attached were duplicates. Evaluation report not attached. Approval of procurement
1118
-
1119
-
1120
-
1121
-
1122
-
1123
-
1124
-
1125
-
1126
-
1127
-
1128
-
1129
-
1130
-
1131
-
1132
- method and bid document not attached.
1133
- Gulu508/wrks/2 017- 2018/00029 Deep borehole apron casting of 7 boreholes in Awach Paicho, Unyama, Patiko and Palaro sub-counties under DDEG and DWSCG Balcon Engineering Ltd 41,468,000 PPDA form 1 for procurement requisition and confirmation of funds not attached. Records of did issue and receipt not signed. No approval of the method of procurement by the contracts committee.
1134
- Gulu508/wrks /2017- 2018/00001 ofConstruction of one block 2 classrooms with an office attached at Aswa Camp Primary School. AwotoLtdFoundation 73,978,700 Bid issue and receipt records not signed and attached were duplicates. Evaluation report not attached. Approval of procurement method and bid document not attached.
1135
- Gulu508/wrks /2017- 2018/00002 ofConstruction of one block 2 classrooms at Palaro Primary School Roovaco Company Ltd 60,650,922 Bid issue and receipt records not signed and attached were duplicates. Evaluation report not attached. Approval of procurement method and bid document not attached.
1136
- Gulu508/wrks/2 017- 2018/00003 ofConstruction of one block 2 classrooms at Tegot Primary School Lacan Bil (u) Ltd 61,220,660 Bid issue and receipt records not signed and attached were duplicates. Evaluation report not attached. Approval of procurement method and bid document not attached.
1137
- Not indicated Renovation of administration building DDEG fundingunder Lacan Bill (U) Ltd 33,485,560 Procurement not reported on. PPDA form 1 for procurement requisition and confirmation of funds not attached. Records of did issue and receipt not signed. No approval of the method of procurement by the contracts committee.
1138
-
1139
-
1140
-
1141
-
1142
-
1143
-
1144
-
1145
-
1146
-
1147
-
1148
-
1149
-
1150
-
1151
-
1152
- Total 356,707,842
1153
-
1154
-
1155
-
1156
-
1157
-
1158
-
1159
-
1160
-
1161
-
1162
-
1163
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
reports/Gulu DLG Report of Auditor General 2019/Gulu DLG Report of Auditor General 2019.chunks.json DELETED
The diff for this file is too large to render. See raw diff
 
reports/Gulu DLG Report of Auditor General 2019/Gulu DLG Report of Auditor General 2019.md DELETED
@@ -1,850 +0,0 @@
1
- OFFICE OF THE AUDITOR GENERAL
2
- THE REPUBLIC OF UGANDA
3
- REPORT OF THE AUDITOR GENERAL
4
-
5
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0514.jpg)
6
-
7
- #### ON THE FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
8
-
9
- **FOR THE YEAR ENDED 30 TH JUNE 2019**
10
-
11
- ---
12
-
13
- Table of Contents
14
- Page
15
- Table of Contents - ii
16
- List of Acronyms - iii
17
- Opinion - 1
18
- Basis for Opinion - 1
19
- Key Audit Matters - 1
20
- 1.0 Implementation of Budget approved by Parliament - 1
21
- Emphasis of Matter - 4
22
- 2.0 Accumulated Payables - 4
23
- Other Information - 4
24
- Management’s Responsibility for the Financial Statements - 4
25
- Auditor’s Responsibility - 5
26
- Other Reporting Responsibilities - 6
27
- Report on the Audit of Compliance with Legislation - 6
28
- 3.0 Uganda Intergovernmental Fiscal Transfers Program for Results (UgFIT) - 6
29
- 4.0 Implementation of the Uganda Road Funds - 8
30
- 5.0 Implementation Of Northern Uganda Social Action Fund Three (NUSAF3) - 9
31
- 6.0 Management of the Youth Livelihood Project (YLP) - 11
32
- 7.0 Uganda Women Entrepreneurship Program (UWEP) - 13
33
- 8.0 Water for Use and Water For Production - 15
34
- APPENDICES - 17
35
- Appendix I: Implementation of Key Outputs - 17
36
- Appendix II: Notable Project Achievements at Sub-project level - 18
37
- Appendix III: Delayed Project Implementation - 19
38
- Appendix IV: Low Recovery of YLP funds - 21
39
- Appendix V: Non Existent Groups - 28
40
- Appendix VI: Non-Compliance with Repayment schedules- UWEP - 29
41
-
42
- ---
43
-
44
- #### List of Acronyms
45
-
46
- | **Acronym** | **Meaning** |
47
- |---|---|
48
- | BOU | Bank of Uganda |
49
- | CoC | Certificates of Compliance |
50
- | CWC | Community Watershed Committee |
51
- | GoU | Government of Uganda |
52
- | IESBA | International Ethics Standards Board for Accountants |
53
- | INTOSAI | International Organisation of Supreme Audit Institutions |
54
- | ISSAIs | International Standards of Supreme Audit Institutions |
55
- | LGFAM | Local Government Financial and Accounting Manual |
56
- | NDP | National Development Plan |
57
- | NPA | National Planning Authority |
58
- | NUSAF | Northern Uganda Social Action Fund |
59
- | PBS | Performance Budgeting System |
60
- | PFMA | Public Finance Management Act |
61
- | TSSA | Treasury Sub Single Account |
62
- | TSA | Treasury Single Account |
63
- | UgIFT | Uganda Intergovernmental Fiscal Transfers Program for Results |
64
- | UGX | Uganda Shillings |
65
- | URF | Uganda Road Fund |
66
-
67
-
68
- ---
69
-
70
- #### REPORT OF THE AUDITOR GENERAL
71
-
72
- #### ON THE AUDIT OF FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
73
-
74
- **FOR THE YEAR ENDED 30 TH JUNE 2019**
75
-
76
- #### THE RT. HON. SPEAKER OF PARLIAMENT
77
-
78
- #### Opinion
79
-
80
- I have audited the accompanying financial statements of Gulu District Local Government, which comprise the Statement of Financial Position as at 30 th June 2019, the Statement of Financial Performance, Statement of Changes in Equity, Statement of Cash Flows, together with other accompanying statements for the year then ended, and notes to the financial statements, including a summary of significant accounting policies.
81
-
82
- In my opinion, the financial statements of Gulu District Local Government for the year ended 30 th June 2019 are prepared, in all material respects, following section 51 of the Public Finance Management Act (PFMA), 2015 and the Financial Reporting Guide, 2018.
83
-
84
- #### Basis for Opinion
85
-
86
- I conducted my audit following the International Standards of Supreme Audit Institutions (ISSAIs). My responsibilities under those standards are further described in the Auditor’s Responsibilities for the Audit of the Financial Statements section of my report. I am independent of the District following the Constitution of the Republic of Uganda (1995) as amended, the National Audit Act, 2008, the International Organisation of Supreme Audit Institutions (INTOSAI) Code of Ethics, the International Ethics Standards Board for Accountants’ Code of Ethics for Professional Accountants (IESBA Code) and other independence requirements applicable to performing audits of Financial Statements in Uganda. I have fulfilled my ethical responsibilities following the other requirements and the IESBA Code. I believe that the audit evidence I have obtained is sufficient and appropriate to provide a basis for my opinion.
87
-
88
- #### Key Audit Matters
89
-
90
- Key audit matters are those matters that, in my professional judgment, were of most significance in my audit of the financial statements of the current period. These matters were addressed in the context of my audit of the financial statements as a whole, and when forming my opinion thereon, and I do not provide a separate opinion on these matters.
91
-
92
- ---
93
-
94
- It is against this background that budget performance was considered as a key audit matter for the audit year. The focus was on the attainment of planned outputs, which greatly affect the wellbeing of communities and have a bearing on the attainment of programme objectives as stated in the statement of performance
95
- Consequently, I developed specific audit procedures to;
96
-
97
- - Establish the revenue performance for the year under review (extent of revenue collection, including local revenue).
98
- - Ascertain the extent of absorption of released funds, including conditional grants and donor funds.
99
- - Assess the extent of attainment of key planned outputs.
100
-
101
- Based on the procedures performed, I made the following observations;
102
-
103
- | **S/N** | **Issue/Observation** |<|<|<|<|<|<| **Recommendation(s)** |
104
- |---|---|---|---|---|---|---|---|---|
105
- | 1.1 | **Local Revenue Performance** Section 3.3(1) of the LGFAM, 2007, under budget principles guides that estimates must reflect revenue, which can be realized from anticipated conditions. Section 3.4.1(4) further requires realistic revenue forecasting as a precondition for successful budgeting. I reviewed the statement of appropriation accounts in financial statements; and noted that out of the revised budgeted total revenue of UGX. 34,425,432,088 for the year 2018/19, UGX.38,609,680,482 was collected representing a performance of 96.7% of the target. The performance of each revenue source is summarized in the table below; **Revenue Source** **Revised Approved Budget** **Warrants** Variance** Taxes Non-Tax Revenue **Sub Total** Transfers from Consolidated fund Grants Received Transfers from other Gov’t Units Grants from International Orgn **Sub Total** **%age perfor mance** 107.8 **0** 100 99.8 0 0 127,968,028 137,968,028 10,000,000 638,414,972 628,414,972 10,000,000 98.4 **766,383,000** 766,383,000** 24,881,053,554 24,829,032,759 52,020,795 0 0 8,066,995,534 7,707,269,668 359,725,866 95.5 711,000,000 711,000,000 **33,659,049,088 32,536,302,427** **1,122,746,66 1** 96.7 0 0 **Grand Total 34,425,432,088** 33,302,685,427 856,510,890** 96.7 local revenue performance of 100% and the overall revenue performance of 96.7% is commendable as it enhances the funding of planned activities, which in turn improves service delivery, if well spent. The Accounting Officer attributed the above performance to the The |<|<|<|<|<|<| commended the Accounting Officer and advised that the revenue is sustained. performance I |
106
- |^|^|<|<|<|<|<|<|^|
107
- |^|^|<|<|<|<|<|<|^|
108
- |^|^|<|<|<|<|<|<|^|
109
- |^|^|<|<|<|<|<|<|^|
110
- |^|^|<|<|<|<|<|<|^|
111
- |^|^|<|<|<|<|<|<|^|
112
- |^|^|<|<|<|<|<|<|^|
113
- |^|^|<|<|<|<|<|<|^|
114
- |^|^|<|<|<|<|<|<|^|
115
- |^|^|<|<|<|<|<|<|^|
116
- |^|^|<|<|<|<|<|<|^|
117
-
118
-
119
- ---
120
-
121
- | stringent revenue collection measures put in place by the council in respect of local revenue. |<|<|<|<|<|<|<||
122
- |---|---|---|---|---|---|---|---|---|
123
- | 1.2 **Unrealistic budget estimate for donor funding** Section 10 (a) of the PFMA, 2015 requires the annual budget to indicate the financing estimates for the financial year to which the budget relates. These estimates should be realistic and achievable by management. It was noted that the district budgeted to receive donor funds of UGX.711,000,000 which was not realised. No evidence was availed to show that the estimate was based on any memorandum of understanding with any donor, rendering the budget estimate unrealistic. Unrealistic budget estimates lead to poor planning which may result in over commitments with the anticipation of realization of revenue. The Accounting Officer explained that the budget provision was based on the assumption that the district would again receive donor funds from UNICEF for immunization, GAVI for HIV and World Health Organization, as was the case the prior year. |<|<|<|<|<|<|<| advised the Accounting Officer to ensure that donor budget estimates are based on an undertaking and should be realistic and achievable to enable proper planning. In instances where funds are not realized, the budget ought to be revised. I |
124
- |^|<|<|<|<|<|<|<|^|
125
- | 1.3 **Absorption of funds** Section 15 (1) of the Public Finance and Management Act, 2007 states that after approval of the annual budget by Parliament, the Secretary to Treasury shall issue the annual cash flow plan of Government, based on the procurement plans, work plans and recruitment plans approved by Parliament. Section 15 (2) states that the annual cash flow plan issued under subsection (1) shall be the basis for the release of funds by the Accountant General to the Accounting Officers. Further to this, section 15 (3) requires an Accounting Officer to commit the budget of a vote, based on the annual cash flow plan issued under this section. I observed that out of total warrants of UGX.33,302,685,427, UGX.28,216,604,934 was spent by the entity representing an absorption level of 84.73%. **Refer to Table below;** the **Warrants (Release)** **[A]** Billion** **Expenditure [B] Billions** **33.303** 28.217** **Unspent [A-B]** **Billions 5.086** above implies that the district was unable to absorb all the available funds to implement the district activities.  The Accounting Officer attributed the unspent balances of UGX.4.4 billions to wages and salaries. He explained that the fact that the budget for Gulu District has never changed since the creation of Omoro District Local Government which leads to the distric receiving excess founds under salaries and wages. The |<|<|<|<|<|<|<| I advised the Accounting Officer to liaise with Ministry of Finance Planning and Economic Development the anomaly. to address |
126
- |^|<|<|<|<|<|<|<|^|
127
- |^|<|<|<|<|<|<|<|^|
128
- |^|<|<|<|<|<|<|<|^|
129
- |^|<|<|<|<|<|<|<|^|
130
- |^|<|<|<|<|<|<|<|^|
131
- | **Implementation of Key Outputs** Section 45 (3) of the PFMA, 2015 states that, an Accounting Officer shall enter into an annual budget performance contract with the Secretary to the Treasury which shall bind the Accounting Officer to deliver on the activities in the work plan. 1.4 In order to achieve its mandate, the district planned to implement and achieve both recurrent and development activities under various programme and projects. The key deliverables for the financial year under review are detailed in **Appendix I.** |<|<|<|<|<|<|<| advised the Accounting Officer to enhance supervision and monitoring for all programs implementation in order to achieve objectives of National Development Plan II. the I |
132
- |^|<|<|<|<|<|<|<|^|
133
-
134
-
135
- ---
136
-
137
- The good performance under NUSAF3 and Uganda Road Fund was attributed to close supervision and monitoring of activity implementation.
138
-
139
- #### Emphasis of Matter
140
-
141
- Without qualifying my opinion, I draw attention to the following matters disclosed in the financial statements:
142
-
143
- #### 2.0 Accumulated Payables
144
-
145
- Included in the payables balance disclosed in Note 22 on page 37 of the financial statements is UGX.3,105,261,425 which relates to sundry creditors/court awards.
146
-
147
- There is a risk that the District propertly may attached for failure to settle the court award promptly.
148
-
149
- The Accounting Officer explained that the District got a court order that resulted in the attachment of some district land by the court bailiffs as an alternative means of offsetting its court commitments. By the close of the financial year under review, court bailiffs had disposed some of the land to a tune of UGX.1,680,000,000 as communicated by the court bailiffs. However, the money did not go through the district normal system of operation for revenue to be recognized and expensed to offset the court costs.
150
-
151
- The Accounting Officer further stated that the district had communicated to the Accountant General for guidance on the recognition of revenue and expense to reduce the outstanding court award obligation which response was being awaited.
152
-
153
- I advised the Accounting Officer to follow up on the matter with the Accountant General and ensure the revenue and expenditure in question are recognized in the financial statements.
154
-
155
- #### Other Information
156
-
157
- The Accounting Officer is responsible for the Other Information. The Other Information comprises the statement of responsibilities of the Accounting Officer and the commentaries by the Head of Accounts and the Accounting Officer, and other supplementary information. The Other Information does not include the financial statements and my auditors’ report thereon. My opinion on the financial statements does not cover the Other Information and I do not express an audit opinion or any form of assurance conclusion thereon.
158
-
159
- ---
160
-
161
- The Accounting Officer is also responsible for the preparation of financial statements following the requirements of the Public Finance Management Act (PFMA), 2015 and the Financial Reporting Guide, 2018 and for such internal control as management determines necessary to enable the preparation of financial statements that are free from material misstatement whether due to fraud or error.
162
-
163
- In preparing the financial statements, the Accounting Officer is responsible for assessing the District’s ability to continue as a going concern, disclosing, as applicable, matters related to going concern and using the going concern basis of accounting, unless the Accounting Officer has a realistic alternative to the contrary.
164
-
165
- #### Auditor’s Responsibility
166
-
167
- My objectives are to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error and to issue an auditor’s report that includes my opinion. Reasonable assurance is a high level of assurance but is not a guarantee that an audit conducted following ISSAIs will always detect a material misstatement when it exists. Misstatements can arise from fraud or error and are considered material if, individually or in the aggregate, they could reasonably be expected to influence the economic decisions of users taken based on these financial statements.
168
- As part of an audit following ISSAI’s, I exercise professional judgment and maintain professional scepticism throughout the audit. I also:
169
-
170
- - Identify and assess the risks of material misstatement of the financial statements, whether due to fraud or error, design and perform audit procedures responsive to those risks, and obtain audit evidence that is sufficient and appropriate to provide a basis for my opinion. The risk of not detecting a material misstatement resulting from fraud is higher than for one resulting from error, as fraud may involve collusion, forgery, intentional omissions, misrepresentations, or the override of internal control.
171
- - Obtain an understanding of internal control relevant to the audit to design audit procedures that are appropriate in the circumstances, but not to express an opinion on the effectiveness of the District’s internal control.
172
- - Evaluate the appropriateness of accounting policies used and the reasonableness of accounting estimates and related disclosures made by management.
173
- - Conclude on the appropriateness of management’s use of the going concern basis of accounting and, based on the audit evidence obtained, whether a material uncertainty exists related to events or conditions that may cast significant doubt on the District’s ability to deliver its mandate. If I conclude that a material uncertainty exists, I am required to draw attention in my auditor’s report to the related disclosures in the financial statements or, if such disclosures are inadequate, to modify my opinion. My conclusions are based on the audit evidence obtained up to the date of my auditor’s report. However, future events or conditions may cause the District to fail to deliver its mandate.
174
- - Evaluate the overall presentation, structure, and content of the financial statements, including the disclosures, and whether the financial statements represent the underlying transactions and events in a manner that achieves fair presentation.
175
-
176
- ---
177
-
178
- From the matters communicated with the Accounting Officer, I determine those matters that were of most significance in the audit of the financial statements of the current period and are therefore the key audit matters. I describe these matters in my auditor’s report unless law or regulation precludes public disclosure about the matter or when, in extremely rare circumstances, I determine that a matter should not be communicated in my report because the adverse consequences of doing so would reasonably be expected to outweigh the public interest benefits of such communication.
179
-
180
- #### Other Reporting Responsibilities
181
-
182
- Following Section 19 (1) of the National Audit Act, 2008, I report to you, based on my work described on the audit of Financial Statements, that; except for the matters raised in compliance with legislation section below, and whose effect has been considered in forming my opinion on financial statements, the activities, financial transactions and information reflected in the financial statements that have come to my notice during the audit, are in all material respects, in compliance with the authorities which govern them.
183
-
184
- #### Report on the Audit of Compliance with Legislation
185
-
186
- The material findings in respect of the compliance criteria for the applicable subject matters are as follows;
187
-
188
- **3.0**
189
-
190
- #### Uganda Intergovernmental Fiscal Transfers Program for Results (UgFIT).
191
-
192
- The Uganda Intergovernmental Fiscal Transfers Program for Results (UgIFT) is a Gov- ernment Program being implemented under the Ministries of Health, Education, through the Districts and municipal councils. The program which started in the financial year 2018/19 was designed to address the financing gaps in service delivery specifically in the Health and Education sectors.
193
-
194
- The audit objective was to establish whether; Project funds were budgeted, disbursed and utilized in the implementation of planned project activities.
195
-
196
- The District budgeted to construct Palaro Seed secondary school and signed a contract with M/s.Davrich Company (U) Ltd on 13 th May 2019 under Procurement Ref. MoES/Wrks/2018-2019/00119 at a contract sum of UGX.1,757,391,000 with a contract period of three years running from 2018/2019- 2020/2021.
197
-
198
- The District realised UGX.464,632,599 for construction of which UGX.301,700,578 was advanced to contractor leaving the balance of UGX.162,932,021 which was diverted to the construction of staff housed and pit latrines at Paibona Primary School and Omoti Primary School.
199
-
200
- ---
201
-
202
- from the site looking for the specified hard burnt clay bricks but had failed to get the clay bricks sufficient for the works. The co-ordinator indicated that the challenge had two major impacts;
203
-
204
- - It was going to delay the progress of the project since it is a key material required during the implementation of the project.
205
- - It was making the project unpopular to the locals because it was not supporting them financially.
206
-
207
- The communication by the contractor requested for attention and Technical advice concerning the challenge. After consultations with the Ministry of Education over the specification of the bricks to be used and obtaining a no objection works ought to have started. However, little works had been done by the time of audit conclusion as shown below;-
208
-
209
- | Site office and store | Foundation work done |
210
- |---|---|
211
- | Some materials on site | Some materials on site |
212
-
213
-
214
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0094.jpg)
215
-
216
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0095.jpg)
217
-
218
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0096.jpg)
219
-
220
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0097.jpg)
221
-
222
- The Accounting Officer explained that the land for Palaro Seed Secondary School is located in a virgin land without any existing structure; the land, therefore, required physical planning before any development could take place.
223
-
224
- Regarding local materials in the project area, the bricks are burnt clay brick sand, hard cores, and aggregates. However, the regional largely lacks burnt clay bricks as specified and provided for in the technical specifications. Sourcing of burnt clay bricks caused delays in project implementation.
225
-
226
- ---
227
-
228
- Lack of a land title exposes the Government investment to risk in case of a land dispute.
229
-
230
- The Accounting Officer explained that the process of acquiring land title was ongoing.
231
-
232
- I advised the Accounting Officer to expedite the process of obtaining a land title to avoid encroachment and land disputes.
233
-
234
- #### 4.0 Implementation of the Uganda Road Funds
235
-
236
- Uganda Road Fund (URF) is a Government of Uganda programme with an overall purpose of ensuring that all public roads are maintained at all times through the provision of adequate and stable financing for routine and periodic maintenance undertaken by designated agencies. Road maintenance is essential to: preserve the roads in their originally constructed condition; protect adjacent resources; provide reliable transport at reduced costs along the routes and contribute to the economic welfare of the communities.
237
-
238
- The objectives of my audit were to ascertain whether the budgeted amounts were fully released and spent in line with the intended purposes and assess whether the programme activities were implemented following the work plan and to the desired quality.
239
-
240
- During the year under review, the district received UGX. 672,244,981 for routine manual maintenance, routine mechanised maintenance, periodic maintenance, and emergency activities on several District roads using Road gangs and the force Account mechanism.
241
-
242
- However; the following observations were made;
243
-
244
- #### i) Paicho- Patiko (22.4km).
245
-
246
- It was observed that the works were done but the road had potholes in some sections a broken culvert, a silted culvert line and water was crossing the road in some part. Gravel was insufficiently compacted along sections where Armco culverts were installed.
247
-
248
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0099.jpg)
249
-
250
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0100.jpg)
251
-
252
- ---
253
-
254
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0102.jpg)
255
-
256
- Gravel insufficiently compacted
257
- Potholes
258
-
259
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0103.jpg)
260
-
261
- #### iii) Awach- Paibona Road (19.6km).
262
-
263
- It was observed that 13km was graveled but the water had swept away half of the road at chainage 10.9 requiring immediate intervention as shown below.
264
-
265
- | Gravelling done. No mitre drains. | Half of the road swept away |
266
- |---|---|
267
- | Burrow pit not filled | Half of the road swept away |
268
-
269
-
270
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0104.jpg)
271
-
272
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0105.jpg)
273
-
274
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0106.jpg)
275
-
276
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0107.jpg)
277
-
278
- #### iv) Abera- Awach (19.2km).
279
-
280
- It was observed that the road was graveled, but a section of the road was slippery as the gravel was not sufficiently compacted as shown;
281
-
282
- | Section of the road slippery |<|<| Section of the road slippery |<|<|
283
- |---|---|---|---|---|---|
284
- |^|<|<|^|<|<|
285
- |^|<|<|^|<|<|
286
- |^|<|<|^|<|<|
287
-
288
-
289
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0108.jpg)
290
-
291
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0109.jpg)
292
-
293
- ---
294
-
295
- The audit objective was to establish whether the Project planning and beneficiary selection were properly undertaken, funds were timely released, and whether project implementation was properly undertaken. Also, I ascertained whether reporting, accountability, and audit were done according to the requirements of the project and that project asset was properly managed.
296
-
297
- It was observed that during the year the District received UGX.5,207,691 for NUSAF3 programme.
298
-
299
- #### 5.1 Project Implementation
300
-
301
- The project Guidelines and Financing Agreements require the CWC to ensure effective implementation of the subprojects. Section 6.2.6 of the NUSAF3 Guidelines requires that at the time of implementation of the sub-projects, the potential environmental and social impacts identified and mitigation measures are taken.
302
-
303
- A review of the project implementation revealed the following;
304
-
305
- #### 5.1.1 Notable Project Achievements (Success Stories)
306
-
307
- Inspection of NUSAF3 sub-projects in the district revealed that the district registered notable achievements under Sustainable Livelihood Pilot (SLP). Some of these include Dii - cwinyi Self-help Group and Peko mito tic self-help group. For details of sub-projects with notable achievements, refer to **Appendix II.**
308
-
309
- Interview with the sub-project members revealed that the achievements were majorly attributed to;
310
-
311
- - Adherence to the 5 core principles of NUSAF3 which is weekly savings, weekly meeting, proper record keeping, timely loan repayments and inter loaning amongst group members.
312
- - Daily attendance by members and all get involved in the business.
313
- - The creativity of the groups, in introducing a penalty for late payments.
314
- - Leadership skills after the training they received.
315
- - They were already existing business groups so it was not a problem working as a team.
316
- - Cooperation among members who feel they owned the project.
317
- - Support visits by the Village Livelihood Improvement Committee (VLICs) and the Community Business Agents (CBAs).
318
- - Intercluster meetings and visits to exchange knowledge and various experiences during the visits.
319
- These are lessons for other sub-project members to learn from.
320
-
321
- ---
322
-
323
- - Delays in capturing details in the biometric machine due to network problem, slowness in loading watershed information and blocked sim cards.
324
- - Some Labour Intensive Public Works (LIPW) sub projects are very demanding in terms of materials and take much more than the stipulated percentage.
325
- - Some of the community members still struggle to appreciate the 30% savings which is mandatory in the LIPW sub- component.
326
- - Political interference in sub component which makes the work very difficult particularly for the technical team.
327
- - Many of the Community Interest Groups (CIGs) struggle to follow the 5 core principle which is a requirement.
328
- - The groups still struggle with issues on group dynamics and affect the cohesion of the groups.
329
- - Most of the group members are illiterate and struggle to cope especially when it comes to comprehending and internalizing the concept of the project requirements.
330
- - Some of the Village Livelihood Investment(VLIC) lack the financial knowledge that should help steer the pilot project to another level.
331
- - The management of the SHGs is quite demanding and yet the CBAs are paid very little at the end of the day.
332
- - Misunderstanding by some landowners also led to delays in project implementation.
333
- - The number of women beneficiaries which outweighs the number of men beneficiaries implied handling harder tasks like uprooting of trees stumps and anti- hills.
334
- - Unwillingness to save by some CIG members and irregular attendance at weekly meetings by some CIG members.
335
- - Verification of self Help groups took a lot of time as Gulu graduated up to 149 self Help groups.
336
- The above challenges led to delays in the implementation of work and hence less output in some projects.
337
-
338
- The Accounting officer explained that the district was arranging refresher training for the CBAs and CFs
339
-
340
- I advised the Accounting Officer to facilitate CBAs and CFs to quicken the process of sensitization and change the community's mindset.
341
-
342
- #### 6.0 Management of the Youth Livelihood Project (YLP)
343
-
344
- ---
345
-
346
- Section 6 (i) requires all the Project Grants disbursed to each Youth Interest Group (YIG) to be treated as a Revolving Fund to be repaid following the Project Financing Agreement between the District Local Government and the beneficiary Youth Interest Group, witnessed by the Area Resident State Attorney.
347
-
348
- However, an analysis of the recovery of the programme funds revealed that out of UGX.576,878,157 due for recovery only UGX.125,659,168 (22%) was recovered leaving UGX.451,218,989 (78%) outstanding.
349
-
350
- It was further noted that 16 youth interest groups had nil deposit since the groups received funds way back in 2015, 2016, 2017, and 2018 as shown in **Appendix IV.**
351
-
352
- According to the monitoring reports availed, poor recovery of the revolving funds was attributed to several factors which include the following:
353
-
354
- - Inadequate operational funds for monitoring project implementation and recoveries of funds from ever increasing youth groups. Some of the groups are located in the new district of Omoro which was curved out of Gulu District.
355
-
356
- - Mismanagement of funds by some group leaders of the Youth Interest Groups. Examples of such groups include; Oguru Ulonygiu Produce buying and selling, Adak Alliance Piggery Project, Pok Ogali Youth Ox-Cultivation Project, Patwol Can Kaya Ox-Cultivation, Kiteny Tam Pi Diki Youth Piggery Project, Awalaboro Ox-Cultivation, Acutomer Par Pi Anyim Ox-Cultivation, Owak Youth Piggery Project, Oturuloya Produce Buying & Selling, Paromo Jale Ber Youth Piggery, Obiya Youth Piggery, hence a total of UGX. 86,268,350 will never be recovered from the above groups since they do not exist. **Appendix V refers.**
357
-
358
- - Most groups came together to access funds and after accessing funds, they disintegrated.
359
-
360
- because of the above, there is a risk that full recovery will not be realized.
361
-
362
- Failure to recover the revolving funds from the Youth Interest Groups defaulters does not only deny other approved youth groups access to the funds but also defeats the overall strategic objectives of the programme.
363
-
364
- ---
365
-
366
- Government stands to lose the funds in question as inspection further revealed that there was no activity on the ground for the poultry project as shown in the summary below;
367
-
368
- | **Project Sector Pictures Remarks name** |<|<|<|
369
- |---|---|---|---|
370
- | Patalira | Agriculture | Oxen for the group | Group received UGX.9,400,000 on |
371
- | Youth Animal |<|^| 19-Mar-2019. Bought 8 bulls, 2 |
372
- | Traction |<|^| Ox-ploughs, and have planted rice |
373
- ||<|^| on 11 acres of land. Weeding |
374
- |^|<|^| already done. Planning to plant |
375
- |^|<|^| millet in September 2019. |
376
- |^|<|^| **Challenges;** |
377
- |^|<|^| 2 members left the group ( ladies) -The rice garden was attacked by Hippos which |
378
- |^|<|^| destroyed the rice. |
379
- |^|<|^||
380
- |^|<| Group members in the rice garden |^|
381
- | Unyama A Poultry Diro Pe Rom Youth Poultry Empty chicken house  Group received UGX 8,580,000 on 19-Nov-2018  Only UGX 750,000 has been recovered to date. The project is no longer in existence because all the birds died. Only 2 people still existed in the group as the 9 left the group. **Challenges;** Lack of market for the birds when they mature. \- Members got busy and others got jobs Lack of a veterinary doctor to help when birds got sick. 2 members remained in the group only - - - |<|<|<|
382
-
383
-
384
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0114.jpg)
385
-
386
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0115.jpg)
387
-
388
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0116.jpg)
389
-
390
- ---
391
-
392
- The audit objective was to establish whether; all funds budgeted under UWEP during the period under review were released and used only for the program, outstanding advances to the women groups were repaid following the agreed repayment schedule and to establish reasons for failure or delays to repay the funds.
393
- The following observations were made;
394
-
395
- #### 7.1 Non-compliance with Repayment Schedules
396
-
397
- Chapter 6 (i & ii) of the youth livelihood program guideline document similarly used for UWEP provides that all the Project Grants disbursed to each Youth Interest Group (YIG) will be treated as a Revolving Fund to be repaid following the Project Financing Agreement between the District Local Government and the beneficiary Women Interest Group.
398
-
399
- It further provides that the scheduling of the repayment should be based on the project maturity, business plan and cash flow projections generated at the design of the project.
400
-
401
- However, an analysis of the recovery of the programme funds revealed that out of UGX. 230,679,500 due for recovery only UGX.107,919,800 (47%) was recovered leaving a balance of UGX. 122,759,700 (53%) outstanding as shown in **Appendix VI.**
402
-
403
- Delayed repayment was attributed to various causes such as; bad season and change of weather, fluctuation in prices and losses made during peak season, competitive market because most of them deal in traditional crops, poor road network which affects market linkage, some 2 groups in Awach each lost a pair of oxen due to diseases i.e. Lacede Women group and Wot Tek Women's group, most women groups in Palaro Sub County are inaccessible by vehicles and are very far e.g. Oroko Waneno Anyim women group, hence difficulty in transporting their crops to the markets.
404
-
405
- Failure to repay on time implies that other eligible groups are unable to access the funds since the programme operates as a revolving fund.
406
- The accounting officer explained that he had instructed the focal point person to strengthen the monitoring of the affected Groups that had been rescheduled for repayment.
407
-
408
- I advised the Accounting Officer to address the identified causes to ensure that all outstanding amounts are recovered.
409
-
410
- | **Project name** | **Sector** | **Pictures** |<| **Remarks** |
411
- |---|---|---|---|---|
412
- | Anyomotwon Odong Ki Mon Pit | Retail Wholesale and Trade |||  Project received UGX. 8,003,000 |
413
- |^|^| on 13-Dec-2018 and UGX 1,971,100 recovered.  Produce in the store. |
414
- |^|^| Produce store | the member keeping them was not around. |
415
-
416
-
417
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0118.jpg)
418
-
419
- - Records were not seen because
420
-
421
- ---
422
-
423
- Loyoboo Akem Agriculture Kwene women
424
- group
425
-
426
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0120.jpg)
427
-
428
- Some of the group members
429
-
430
- - Project received UGX 8,086,000 on 13-Dec-2018 but has not made any recoveries yet.
431
- - Bought 4 oxen and 2 ploughs plus chains, barbed wire and polls plus nails for the cral.
432
- - No records were seen except minutes of group meetings.
433
-
434
- The Accounting Officer explained that the affected groups were still within their first year of implementation. The district had engaged the group leaders to have them rescheduled after completion of the first year in November 2019.
435
-
436
- I advised the Accounting Officer to closely monitor the progress of recovery when recoveries become due.
437
-
438
- #### 8.0 Water for Use and Water For Production
439
-
440
- According to the Budget Framework Paper FY2018/19 for the Ministry of Water and Environment, the water sector targeted to achieve an increased access to safe water and sanitation facilities for rural, urban and water for production uses through increase in access to safe water facilities in rural areas by 72% and increase in functionality of water supply systems in rural areas by 86%.
441
- The following observations were made;
442
-
443
- #### 8.1 Safe Water Coverage and Functionality
444
-
445
- However it was observed that water coverage for sub-counties of Patiko, Bungatira, Paicho and Layibi and Pece Division were below the district average at 64.21%, 65.09%, 56.6%, 71.14%, and 65.46% were below the target respectively as shown below:-
446
-
447
- | **Subcounty** | **% Safe water coverage** |
448
- |---|---|
449
- | Patiko | 64.21 |
450
- | Bungatira | 65.09 |
451
- | Paicho | 56.6 |
452
- | Layibi | 71.14 |
453
- | Pece | 65.46 |
454
-
455
-
456
- Low levels of safe water coverage deprive households of their right of access to safe and clean water.
457
-
458
- ---
459
-
460
- | **Subcounty** | **% Functionality** |
461
- |---|---|
462
- | Awach | 66.05 |
463
- | Patiko | 71.79 |
464
- | Bungatira | 76.15 |
465
- | Unyama | 62.31 |
466
- | Paicho | 75.07 |
467
- | Palaro | 72.54 |
468
-
469
-
470
- Low levels of functionality of water sources deprive households of their right of access to safe and clean water.
471
- The Accounting Officer pledged to liaise with the relevant authority to achieve the sector target.
472
- I advised the Accounting Officer to ensure that non-functional water sources are rectified and all water sources are maintained in a functional condition.
473
-
474
- **8.3**
475
-
476
- #### Absence of Water User Committees
477
-
478
- Section 50 (1,3) of the Water Act states that A set of individuals or households may form a water user group and collectively plan and manage the point source water supply system in their area.
479
-
480
- However, review of progress reports found that out of 552 functional water sources across the various sub-counties and divisions, only 384 (69.57%) had water user committees and 30.43% without WUCs as shown below.
481
-
482
- | **Sub-county** | **Functional water sources** | **Water sources with WUCs** | **Water** **without WUCs** **sources** |
483
- |---|---|---|---|
484
- | Awach | 65 | 48 | 17 |
485
- | Bungatira SC | 45 | 35 | 10 |
486
- | Paicho SC | 63 | 45 | 18 |
487
- | Patiko SC | 46 | 30 | 16 |
488
- | Palaro SC | 39 | 20 | 19 |
489
- | Unyama SC | 65 | 45 | 20 |
490
- | Laroo Division | 59 | 38 | 21 |
491
- | Layibi Division | 58 | 38 | 20 |
492
- | Pece Division | 53 | 40 | 13 |
493
- | Bardege Division | 59 | 45 | 14 |
494
- | **TOTAL** | **552** | **384** | **168** |
495
-
496
-
497
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0123.jpg)
498
-
499
- ---
500
-
501
- #### APPENDICES Appendix I: Implementation of Key Outputs
502
-
503
- | **Programme** | **Activity** | **Planned Outputs** | **Actual Outputs** | **%age Performance** | **Remarks** |
504
- |---|---|---|---|---|---|
505
- | **UgFIT** | Construct of Palaro Seed secondary school | 1 | N/A | N/A |  It is a multi-year project hence still ongoing  UGX.464,632,599 received for construction,  Advance of UGX.301,700,578 paid to the contractor; and the balance of UGX.162,932,021 was diverted and utilized for the construction of a block of 4 staff houses and a 5 stance pit latrine at Paibona Primary School and Omoti Primary School respectively.  Works had stalled because the Contractor was required to use hard burnt clay bricks during the construction  The contractor was on site but no works were on going. |
506
- | NUSAF3 | Beneficiary groups planned to be supported | 184 | 184 | 100% |  Funding was in accordance with the IPF of UGX.5,207,963,691. |
507
- | URF | Routine Manual Maintenance | 452.3kms | 367.6kms | 81% |  A review of the road monitoring reports indicated that 367.6km roads’ network were worked on. |
508
- || Mechanized Maintenance | 19.2 kms | 19.2 kms | 100% |  During inspection, I noted that out of the planned 19.2km roads that the road was gravelled, but a section of the road was slippery as the gravel was not sufficiently compacted. |
509
- | SAGE | Beneficiary Elderly planned to be supported | 16,000 | 1495 ||  There is improvement in the number of beneficiaries up to 1,495 out of the total  Verification of new 119 beneficiaries has just been concluded to fill up the above  A total of 148 alternative recipients have been enrolled to help pick money for of 1,600 required for Gulu. remaining gap. deceased beneficiaries.  At least 3 beneficiaries have confessed of having bought cows, while majority confess of having bought goats and pigs. |
510
-
511
-
512
- 17
513
-
514
- ---
515
-
516
- #### Appendix II: Notable Project Achievements at Sub-project level
517
-
518
- | **No** | **District** | **Sub project name** | **Funds received** | **Salient Achievement SLP** |
519
- |---|---|---|---|---|
520
- | 1 | Gulu | Dii- cwinyi Self- help Group | 6,000,000 |   Improvement in finance management Improved business skills, produce are supplied in big quantities by other districts up to beneficiaries’ project side. Improvement in weekly saving, there is cumulative saving of 12,000,000 for 6months only compared to the years they had not received the fund.  A member is able to save an average of 50,000 per week.  Adherence to NUSAF core principle and core responsibilities among project beneficiaries. |
521
- | 2 | Gulu | Peko mito tic self-help group. | 7,200,000 |  The project beneficiaries are able to save an average of 300,000= per week.  The project have a cumulative saving of 20,000,000= for a period of six months  Environmental safeguard measures being practiced. A total of 1000 pines have been planted. Improved social cohesion support among members. Improved business skills.    Easy access to loans. |
522
-
523
-
524
- 18
525
-
526
- ---
527
-
528
- #### Appendix III: Delayed Project Implementation
529
-
530
- ### Project name Sector Pictures Remarks
531
-
532
- Bolip II Borbayo Tree planting Tree planting
533
-
534
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0127.jpg)
535
-
536
- Bush clearing done
537
-
538
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0128.jpg)
539
-
540
- Tools in the group store
541
-
542
- 19
543
-
544
- Project received UGX 79,850,000 on 15-April-2019. Implementation very slow, Bush clearing was done on 30 acres, lining and pitting still on going. Bought hoes, slashers plus other items and hiring a store.
545
-
546
- ### Challenges;
547
-
548
- - project management committee (CMPC) were trained late.
549
- - the Bio metric machine took so long.
550
- - attendance has to be entered and finger prints of some people could not be taken as the machine rejected them.
551
- - the 188 beneficiaries did not turn up only 120 appeared to clear the land. hence 90% of the funds are still in the account.
552
-
553
- ---
554
-
555
- | Ali- Aboga Community Access Road Road Road pass through settlement. Works yet to start. to the Project received UGX.78,887,016 on 11-April-2019. No work had been done yet. **Challenges;** \- Pegging the road had not yet began because of the delay on the part of the Engineer and Municipal Surveyor. - - \- After pegging, the exact number of graves will be identified and compensation of graves with in the road will commence. Laroo division will handle. In a letter dated 29/6/2019, the LC1 Chairman had written to the Town Clerk Gulu MC requesting for pegging of the road. In a letter dated 31/7/2019, the community facilitator Laroo watershed wrote to office of the Senior Assistant Town Clerk, Gulu requesting for the same. In a letter dated 21/8/2019 the Surveyor Gulu MC, wrote to the LC1 Lukungu sub-ward, Pece Prison Parish informing him to mobilize the community around and along the said road to be around on 27/8/2019 for the pegging exercise. - |<|<|<|
556
- |---|---|---|---|
557
- | Aywee Wamito kwo Dairy farming | Dairy farming || Project received UGX 18,100,000 on 12-Dec-2018. No |
558
- ||<|^| animals had been purchased yet, but a shade for animals |
559
- |^|<|^| were constructed plus feeding troughs, water tank, and a |
560
- |^|<|^| sign post. |
561
- |^|<|^| Challenges; |
562
- |^|<|^| \- Trainings from vet officer as they are very few and |
563
- |^|<|^| hard to find. |
564
- |^|<|^| \- Dairy animals to be purchased from western |
565
- |^|<|^| Uganda and with the help of veterinary officers |
566
- |^|<|^| who are in touch with the process. |
567
- |^|<|^| \- Feeding animals during dry season will be a |
568
- |^|<|| problem |
569
- |^|<|^| \- Few veterinary officers in case of need when |
570
- |^|<|^| animals fall sick. |
571
- |^|<|^| \- Hence about 89% not spent. |
572
-
573
-
574
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0130.jpg)
575
-
576
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0131.jpg)
577
-
578
- 20
579
-
580
- ---
581
-
582
- | Omel B Jing Cwinyi Bee keeping Bee keeping Beehives in trees Project received UGX 17,850,000 on 12-Dec-2018. Purchased bee hives, and various items in the budget for harvesting when the time is due. Challenges; - - Purported to have purchased 70 Bee hives, however only 60 found on ground. 10 missing @120,000, hence unaccounted for UGX 1,200,000. |<|<|<|
583
- |---|---|---|---|
584
- | Wii Layibi A revolving Fund | SLP Revolving || Project received UGX 36,000,000 on 28-Sept-2018 and has |
585
- || Fund |^| 5 groups. |
586
- |^||^| Challenges; |
587
- |^|^|^| -Loan period of 3 months is too short especially for people |
588
- |^|^|^| who do agriculture. 3% for the village revolving fund and 5 |
589
- |^|^|^| % is paid back by members. A communication was made |
590
- |^|^|^| to OPM. |
591
- |^|^|^| -Delay in payment by some members with various reasons. |
592
- |^|^| Audit team at the home of one of | -Poor leadership among some groups. |
593
- |^|^| the group members. |<|
594
-
595
-
596
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0133.jpg)
597
-
598
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202019/img-0134.jpg)
599
-
600
- #### Appendix IV: Low Recovery of YLP funds
601
-
602
- | **S / N** | **Project name** | **Sector** | **Date of disbursement** | **Amount disbursed** | **Repaymen t date** | **Recoverab le amount** | **5% services fee where applicable** | **Amount Recovered** | **Amount due** | **Remarks** |
603
- |---|---|---|---|---|---|---|---|---|---|---|
604
- | 1 | Acut Omer Youth Produce Buying & Selling Project | Trade | 21-Oct-2015 | 8,642,800 | 21-Oct- 2015 | 3,432,140 | 432,140 | 6,500,000 | 3,432,140 | Inactive |
605
- | 2 | Boli Pi Lubanga Twero Youth Produce Buying & Selling | Trade | 21-Oct-2016 | 7,500,000 | 26-Nov- 2016 | 7,875,000 | 375,000 | 2,690,000 | 7,875,000 | Inactive |
606
- | 3 | Boli Pii Cing Maleng Grinding Mill | Trade | 8-Nov-2018 | 6,840,000 | 8-Dec-2018 | 3,420,000 | 342,000 | 850,000 | 3,420,000 | On going |
607
-
608
-
609
- 21
610
-
611
- ---
612
-
613
- | 4 | Laban Can Deg Ming Public Address System | Trade | 26-Jun-2017 | 11,940,000 | 3-Aug-2017 | 12,537,000 | 597,000 | - | 12,537,000 | On going |
614
- |---|---|---|---|---|---|---|---|---|---|---|
615
- | 5 | Laban Oruu Ki Tam Youth Produce Buying & Selling | Trade | 19-Oct-2016 | 7,500,000 | 21-Nov- 2016 | 0 | - | 7,500,000 | - | completed |
616
- | 6 | Oguru Bed Ki Gen Animal Traction | Trade | 8-Nov-2018 | 7,390,000 | 26-Nov- 2018 | 7,110,000 | 369,500 | 280,000 | 7,110,000 | On going |
617
- | 7 | Oguru Wor Tweroni Youth Produce Buying & Selling Project | Trade | 1st July 2015 | 8,621,500 | 2nd Nov 2015 | 9,052,575 | 431,075 | 2,043,000 | 9,052,575 | Inactive |
618
- | 8 | Pageya Gum Pe Rom Youth Produce Buying & Selling | Trade | 13-Mar-2017 | 7,500,000 | 17.April.201 7 | 7,875,000 | 375,000 | 2,500,000 | 7,875,000 | Inactive |
619
- | 9 | Pageya Waryemo Can Produce Buying & Selling Group | Trade | 16-Jul-2015 | 7,332,000 | 14-Oct- 2015 | 7,698,600 | 366,600 | 1,240,000 | 7,698,600 | On going |
620
- | 10 | Paromo Can Rwode Pe Youth Ox- Cultivation | Agricult ure | 8-Sep-2016 | 9,670,000 | 10-May- 2017 | 10,153,500 | 483,500 | - | 10,153,500 | On going |
621
- | 11 | Paromo Jale Ber Youth Piggery | Trade | 26-Aug-2016 | 8,714,000 | 12-Apr- 2017 | 9,149,700 | 435,700 | - | 9,149,700 | On going |
622
- | 12 | Paromo Youth For Development Piggery | Trade | 26-Sep-2016 | 8,850,000 | 28-04-2017 | 8,592,500 | 442,500 | 700,000 | 8,592,500 | On going |
623
- | 13 | Payuta Straight Talk Youth Group | Trade | 11-Dec-2015 | 8,050,000 | 19.12.2015 | 2,131,000 | 106,550 | 5,919,000 | 2,131,000 | On going |
624
- | 14 | Payuta Tam Pi Wan Youth Piggery Project | Trade | 26-Sep-2016 | 8,290,000 | 26.12.2016 | 4,504,500 | 214,500 | 4,000,000 | 4,504,500 | On going |
625
- | 15 | Tuku Visible Youth Piggery | Trade | 13-Mar-2017 | 8,850,000 | 20.April.201 7 | 3,255,000 | 155,000 | 5,700,000 | 3,255,000 | On going |
626
- | 16 | Paminano Produce Buying & Selling | Trade | 23-Sep-2015 | 8,020,000 | 30-03- 2016 | 1,987,314 | 94,625 | 6,127,500 | 1,987,314 | On going |
627
- | 17 | Cet Kana Youth Piggery Project | Trade | 12-Jun-2015 | 8,676,000 | 20.10.2015 | 8,101,800 | 385,800 | 960,000 | 8,101,800 | On going |
628
- | 18 | Kulukeno Produce Buying & Selling | Trade | 19-Nov-2015 | 5,000,000 | 1.9.2015 | 3,150,000 | 150,000 | 2,000,000 | 3,150,000 | On going |
629
- | 19 | Lagwiny Youth | Trade | 19-Nov-2015 | 7,635,000 | 19.02.2016 | 7,281,750 |||| On going |
630
-
631
-
632
- 22
633
-
634
- ---
635
-
636
- || Piggery Project |||||| 346,750 | 700,000 | 7,281,750 ||
637
- |---|---|---|---|---|---|---|---|---|---|---|
638
- | 20 | Lawiya Dul Youth Masonry & Brick Laying Project | Trade | 27-Oct-2015 | 6,445,000 | 4.10.2015 | 4,824,550 | 229,550 | 1,850,000 | 4,824,550 | On going |
639
- | 21 | Layik Youth Piggery | Trade | 26-Sep-2016 | 9,320,000 | 26.12.2016 | 8,213,000 | 391,000 | 1,500,000 | 8,213,000 | On going |
640
- | 22 | Lukodi Youth Produce Buying & Selling Project | Trade | 23-Jul-2015 | 6,199,000 | 30-08-2015 | 5,143,950 | 244,950 | 1,300,000 | 5,143,950 | On going |
641
- | 23 | Obiya Youth Piggery | Trade | 21-Oct-2016 | 9,600,000 | 24.04.2017 | 6,059,550 | 288,550 | 3,829,000 | 6,059,550 | Inactive |
642
- | 24 | Oguru Produce Buying & Selling | Trade | 9-Jan-2016 | 7,054,200 | 2.11.2016 | 2,440,410 | 116,210 | 4,730,000 | 2,440,410 | On going |
643
- | 25 | Oguru Ulonygiu Produce Buying and Selling | Trade | 26-Jun-2017 | 7,100,000 | 3.8.2017 | 7,455,000 | 355,000 | - | 7,455,000 | Inactive |
644
- | 26 | Oturuloya Produce Buying & Selling || 7-Nov-2016 | 7,000,000 | 7.12.2016 | 7,350,000 | 350,000 | - | 7,350,000 | inactive |
645
- | 27 | Owak Youth Piggery Project | Trade | 23-Jun-2015 | 6,500,000 | 31.10.2015 | 6,825,000 | 325,000 | - | 6,825,000 | On going |
646
- | 29 | Twon Okun Ribbe Ber Youth Farmers | Agricult ure | 18-Apr-2019 | 7,795,000 | 18.July.201 9 | 8,184,750 | 389,750 | - | 8,184,750 | On going |
647
- | 30 | Acutomer Par Pi Anyim Ox-Cultivation | Agricult ure | 23-Apr-2018 | 7,505,000 | 03.10.2017 | 7,880,250 | 375,250 | - | 7,880,250 | On going |
648
- | 31 | Ajani Atek Tera Youth Grinding Mills | Trade | 23-Mar-2017 | 6,855,000 | 23-Apr-17 | 5,801,250 | 276,250 | 1,330,000 | 5,801,250 | On going |
649
- | 32 | Ajanyi Yele Ber Youth Produce Buying & Selling | Trade | 23-Mar-2017 | 6,500,000 | 23.Jun.2017 | 5,688,900 | 270,900 | 1,082,000 | 5,688,900 | On going |
650
- | 33 | Ajanyi Mak Tic Youth Produce Buying & Selling | Trade | 23-Mar-2017 | 6,500,000 | 23.Jun.2017 | 5,040,000 | 240,000 | 1,700,000 | 5,040,000 | On going |
651
- | 34 | Lego Jami Youth Goat Rearing Group Boke Ber Wa Ool Ki | Trade | 23-Jul-2015 | 8,145,000 | 30-Oct-15 | 5,870,760 | 279,560 | 2,553,800 | 5,870,760 | On going |
652
-
653
-
654
- 23
655
-
656
- ---
657
-
658
- | 35 | Bura Ribe Aye Teko Youth Ox-Cultivation | Agricult ure | 23-Mar-2017 | 10,362,000 | 24.8.2017 | 8,780,100 | 418,100 | 2,000,000 | 8,780,100 | On going |
659
- |---|---|---|---|---|---|---|---|---|---|---|
660
- | 36 | Corner Ward Kacel Watwero Youth Produce Buying & Selling | Trade | 13-Mar-2017 | 7,000,000 | 24.April.201 7 | 4,935,000 | 235,000 | 2,300,000 | 4,935,000 | On going |
661
- | 37 | Corner Ward Ribbe Aye Teko Piggery Youth Group | Trade | 23-Mar-2017 | 8,000,000 | 13.Jun.2017 | 4,035,067 | 192,017 | 4,159,650 | 4,035,067 | On going |
662
- | 38 | Lakwela Laping Oloyo Ox-Cultivation | Agricult ure | 21-Mar-2018 | 7,220,000 | 21.07.2018 | 7,056,000 | 336,000 | 500,000 | 7,056,000 | On going |
663
- | 39 | Omel A Lubanga Peyero Ox-Cultivation | Agricult ure | 26-Jun-2017 | 7,580,000 | 03.10.2017 | 6,909,000 | 329,000 | 1,000,000 | 6,909,000 | On going |
664
- | 40 | Omel B Youth Ox- Cultivation | Agricult ure | 26-Jun-2016 | 8,770,000 | 26.Sept.201 6 | 7,588,174 | 361,341 | 1,543,167 | 7,588,174 | On going |
665
- | 41 | Te-Olam Mak Tic Piggery Project | Trade | 26.Jun.2016 | 7,245,000 | 26.Sept.201 6 | 7,245,000 | - | 7,630,000 | 7,245,000 | completed |
666
- | 42 | Agoro Opar Pi Bulu Piggery Youth Group | Trade | 12-Jun-2015 | 8,877,000 | 28.10.2015 | 9,320,850 | 443,850 | - | 9,320,850 | On going |
667
- | 43 | Awalaboro Ox- Cultivation | Agricult ure | 21-Mar-2018 | 7,645,000 | 21.07.2018 | 8,027,250 | 382,250 | - | 8,027,250 | On going |
668
- | 44 | Kiteny Tam Pi Diki Youth Piggery Project | Trade | 12-Jun-2015 | 8,425,000 | 13.2.2016 | 8,846,250 | 421,250 | - | 8,846,250 | On going |
669
- | 45 | Lugore Piggery Youth Group | Trade | 12-Jun-2015 | 7,527,000 | 15-12-2015 | 6,853,350 | 326,350 | 1,000,000 | 6,853,350 | On going |
670
- | 46 | Mede Centre Waloko Kwo Ox- Cultivation | Agricult ure | 26-Jun-2017 | 8,730,000 | 03.Oct.2017 | 9,166,500 | 436,500 | - | 9,166,500 | On going |
671
- | 47 | Ongedo Wang Ma Waculo Produce Buying | Trade | 26-Jun-2017 | 7,100,000 | 26.July.201 7 | 7,035,000 | 335,000 | 400,000 | 7,035,000 | Inactive |
672
- | 48 | Oroko Wapwoyo Lutela Produce Buying & Selling Group | Trade | 12-Jun-2015 | 8,120,000 | 28.Sept.201 5 | 1,386,000 | 66,000 | 6,800,000 | 1,386,000 | Inactive |
673
- | 49 | Patwol Can Kaya Ox- Cultivation | Agricult ure | 3-Jul-2018 | 7,345,000 | 26.Oct.2018 | 7,712,250 | 367,250 | - | 7,712,250 | On going |
674
-
675
-
676
- 24
677
-
678
- ---
679
-
680
- | 50 | Pok Ogali Youth Ox- Cultivation Project | Agricult ure | 1-May-2016 | 6,758,000 | 30.Oct.2015 | 7,095,900 | 337,900 | - | 7,095,900 | Inactive |
681
- |---|---|---|---|---|---|---|---|---|---|---|
682
- | 51 | Adak Alliance Piggery Project | Trade | 7-Jul-2015 | 9,215,000 | 28.Nov.201 5 | 9,675,750 | 460,750 | - | 9,675,750 | Inactive |
683
- | 52 | Adak Tii Pi Anyim Youth Ox-Cultivation Group | Agricult ure | 23-Mar-2017 | 9,010,000 | 23.Jun.2017 | 9,460,500 | 450,500 | - | 9,460,500 | On going |
684
- | 53 | Angany Cam Kwoki Youth Produce Traders | Trade | 19-Nov-2018 | 7,100,000 | 26.Dec.201 8 | 6,450,000 || 650,000 | 6,450,000 | On going |
685
- | 54 | Anyadwe Youth Produce Traders | Trade | 23-Nov-2018 | 7,100,000 | 23.Nov.201 8 | 3,549,800 || 3,550,200 | 3,549,800 | On going |
686
- | 55 | Awoonyim Wang Kalo Ox-Cultivation Project | Agricult ure | 10-Aug-2015 | 8,870,000 | 15.May.201 6 | 9,103,500 | 433,500 | 200,000 | 9,103,500 | Inactive |
687
- | 56 | Pajaa Kacel Watek Youth Ox-Cultivation | Agricult ure | 18-Apr-2019 | 8,410,000 | 18.July.201 9 | 8,410,000 || - | 8,410,000 | On going |
688
- | 57 | Patalira Kica Ber Piggery Project || 23-Sep-2015 | 7,464,000 | 23.Dec.201 5 | 1,589,700 | 373,200 | 5,950,000 | 1,589,700 | On going |
689
- | 58 | Agung Atem Lwak Youth Ox-Cultivation Project | Agricult ure | 12-Jun-2015 | 7,691,000 | 30.Dec.201 5 | 1,828,050 | 87,050 | 5,950,000 | 1,828,050 | On going |
690
- | 59 | Akonyi Bedo Warocu Kwo Youth Produce Buying & Selling | Trade | 21-Oct-2016 | 7,720,000 | 19-Nov- 2016 | 7,161,000 | 341,000 | 900,000 | 7,161,000 | On going |
691
- | 60 | Coopil Mic Pa Lacwec Youth Ox-Traction | Trade | 19-Nov-2018 | 8,400,000 | 26.Nov.201 8 | 8400000 | - | - | 8,400,000 | On going |
692
- | 61 | Youth Piggery Project Lapeta Vision Ahead | Trade | 12-Jun-2015 | 5,034,000 | 30-Dec- 2015 | 5,285,700 | 251,700 | - | 5,285,700 | On going |
693
- | 62 | Loyoboo A Utem Gum Youth Piggery Project | Agricult ure | 12-Jun-2015 | 6,238,000 | 30.Jan.2016 | 6,182,400 | 294,400 | 350,000 | 6,182,400 | On going |
694
- | 63 | Loyoboo Waribbe Youth Ox-Cultivation | Agricult ure | 4-Jul-2018 | 8,105,000 | 04.Oct.2018 | 5,000,000 | - | - | 5,000,000 | On going |
695
- | 64 | Youth Piggery Oding Ribbe Ber || 24-Oct-2016 | 8,800,000 | 9-May-17 | 9,240,000 | 440,000 | - | 9,240,000 | On going |
696
-
697
-
698
- 25
699
-
700
- ---
701
-
702
- | 65 | Oguru Tic Ryemo Can Youth Piggery | Agricult ure | 19-Nov-2018 | 7,900,000 | 26.Nov.201 8 | 1,975,000 | - | - | 1,975,000 | On going |
703
- |---|---|---|---|---|---|---|---|---|---|---|
704
- | 66 | Oguru Wang Nen Youth Poultry Keeping | Poutry | 16-Nov-2016 | 7,214,000 | 22-Dec- 2016 | 1,551,006 | 73,857 | 5,736,851 | 1,551,006 | On going |
705
- | 67 | Unyama A Diro Pe Rom Youth Poultry | Poutry | 19-Nov-2018 | 8,580,000 | 26.Dec.201 8 | 4,290,000 | - | 750,000 | 4,290,000 | On going |
706
- | 68 | Unyama B Wilobo Wire Ox-Cultivation Project | Agricult ure | 12-Jun-2015 | 4,700,000 | 30.Sept.201 5 | 3,202,500 | 152,500 | 1,650,000 | 3,202,500 | On going |
707
- | 69 | Angany Youth Animal Traction II | Agricult ure | 18-Apr-2019 | 7,680,000 | 12.Dec.201 9 |||| 7,680,000 | On going |
708
- | 70 | Anyomotwon Youth Animal Traction | Agricult ure | 19-Mar-2019 | 9,400,000 | 04.August.2 019 |||| 9,400,000 | On going |
709
- | 71 | Lakwela Youth Animal Traction II | Agricult ure | 18-Apr-2019 | 7,680,000 | 12.Nov.201 9 |||| 7,680,000 | On going |
710
- | 72 | Loyoboo Youth Animal Traction II | Agricult ure | 18-Apr-2019 | 9,400,000 | 4.August.20 19 |||| 9,400,000 | On going |
711
- | 73 | Omel B Youth Animal Traction II | Agricult ure | 18-Apr-2019 | 9,400,000 | 12.AUGUST. 2019 |||| 9,400,000 | On going |
712
- | 74 | Omel B Youth Animal Traction III | Agricult ure | 19-Mar-2019 | 9,400,000 | 4.August.20 19 |||| 9,400,000 | On going |
713
- | 75 | Patalira Youth Animal Traction | Agricult ure | 19-Mar-2019 | 9,400,000 | 4.August.20 19 |||| 9,400,000 | On going |
714
- | 76 | Unyama B Youth Poultry II | Agricult ure | 19-Mar-2019 | 7,060,000 | 12.May .2019 |||| 9,400,000 | On going |
715
- | 77 | Layik Youth Vegetables Growing II | Agricult ure | 19-Mar-2019 | 6,000,000 | 04.May.201 9 ||| 340,000 | 5,660,000 | On going |
716
- | 78 | Anyadwe Youth Carpentry II | Works | 19-Mar-2019 | 9,150,000 | 4-May-19 ||| 1,200,000 | 7,950,000 | On going |
717
- | 79 | Twonokun Youth Grinding Mill | Trade | 18-Apr-2019 | 8,800,000 | 12.05.2019 ||| 300,000 | 7,700,000 | On going |
718
- | 80 | Agoro Youth Produce Traders | Trade | 18-Apr-2019 | 8,000,000 | 4.May.2019 |||| 8,800,000 | On going |
719
- | 81 | Kinene Youth Produce Traders | Trade | 19-Mar-2019 | 8,000,000 | 04.May.201 9 |||| 8,000,000 | On going |
720
- | 82 | Kiteny Youth Produce | Trade | 19-Mar-2019 || 04.April.201 ||||| On going |
721
-
722
-
723
- 26
724
-
725
- ---
726
-
727
- || Traders II ||| 8,000,000 | 9 ||| 200,000 | 7,800,000 ||
728
- |---|---|---|---|---|---|---|---|---|---|---|
729
- | 83 | Kiteny Youth Produce Traders III | Trade | 18-Apr-2019 | 8,000,000 | 12.May .2019 |||| 8,000,000 | On going |
730
- | 84 | Laban Youth Produce Traders III | Trade | 18-Apr-2019 | 8,000,000 | 12.May.201 9 ||| 315,000 | 7,685,000 | On going |
731
- | 85 | Lugore Youth Produce Traders | Trade | 19-Mar-2019 | 8,000,000 | 04.May.201 9 |||| 8,000,000 | On going |
732
- | 86 | Pageya Bar Youth Produce Traders | Trade | 19-Mar-2019 | 8,000,000 | 04.May.201 9 ||| 700,000 | 7,300,000 | On going |
733
- | 87 | Unyama A Youth Produce Traders | Trade | 19-Mar-/2019 | 8,000,000 | 04.May.201 9 |||| 8,000,000 | On going |
734
-
735
-
736
- 27
737
-
738
- ---
739
-
740
- #### Appendix V: Non Existent Groups
741
-
742
- | **Project name** | **Sector** | **Date of disbursem ent** | **Amount disbursed** | **Recoverable amount** | **5% services fee where applicabl e** | **Amount Recove red** | **Amount due** | **Remarks** |
743
- |---|---|---|---|---|---|---|---|---|
744
- | Paromo Jale Ber Youth Piggery | Trade | 26-Aug-2016 | 8,714,000 | 8,714,000 | 435700 | - | 9,149,700.00 | not existing |
745
- | Oguru Ulonygiu Produce Buying and Selling | Trade | 26-Jun-2017 | 7,100,000 | 7,100,000 | 355000 | - | 7,455,000.00 | Inactive |
746
- | Oturuloya Produce Buying & Selling || 7-Nov-2016 | 7,000,000 | 7,000,000 | 350000 | - | 7,350,000.00 | not existing |
747
- | Owak Youth Piggery Project | Trade | 23-Jun-2015 | 6,500,000 | 6,500,000 | 325000 | - | 6,825,000.00 | not existing |
748
- | Acutomer Par Pi Anyim Ox- Cultivation | Agricultu re | 23-Apr-2018 | 7,505,000 | 7,505,000 | 375250 | - | 7,880,250.00 | not existing |
749
- | Awalaboro Ox-Cultivation | Agricultu re | 21-Mar-2018 | 7,645,000 | 7,645,000 | 382250 | - | 8,027,250.00 | disappeared |
750
- | Kiteny Tam Pi Diki Youth Piggery Project | Trade | 12-Jun-2015 | 8,425,000 | 4,500,000 | 421250 | - | 8,846,250.00 | not existing |
751
- | Patwol Can Kaya Ox- Cultivation | Agricultu re | 3-Jul-2018 | 7,345,000 | 7344900 | 367250 | - | 7,712,250.00 | not existing |
752
- | Pok Ogali Youth Ox- Cultivation Project | Agricultu re | 1-May-2016 | 6,758,000 | 6758000 | 337900 | - | 7,095,900.00 | not existing |
753
- | Adak Alliance Piggery Project | Trade | 7-Jul-2015 | 9,215,000 | 9215000 | 460750 | - | 9,675,750.00 | not existing |
754
- | Obiya Youth Piggery | Trade | 21-Oct- 2016 | 9,600,0 00 | 9,600,000 | 480,000 || 6,251,000 | inactive |
755
-
756
-
757
- ---
758
-
759
- #### Appendix VI: Non-Compliance with Repayment schedules- UWEP
760
-
761
- | **Sub County** | **Name Of Women Group** | **Sector** | **Amount Approved By Dec** | **Amount Disbursed By- Tsu- Mglsd** | **Repaymen t Date** | **Recoverable Amount** | **Amount Recovered** | **5% Surcharge** | **Balance** |
762
- |---|---|---|---|---|---|---|---|---|---|
763
- | Unyama | Loyo Boo Akem Kwene Women Group | Agriculture | 8,086,000 | 8,086,000 | 14/04/2019 | 2,021,700 | - | - | 8,086,000 |
764
- | Awach | Kica Ber Women Group | Agriculture | 6,500,000 | 5,710,000 | 14/02/2019 | 2,379,500 | 937,000 | - | 4,773,000 |
765
- | Awach | Yub Kiti Women Group | Agriculture | 8,068,000 | 6,880,000 | 14/04/2019 | 2,017,500 | 1,600,000 | - | 6,880,000 |
766
- | Awach | Dii Cwinyi Women Group | Agriculture | 5,400,000 | 5,400,000 | 14/02/2019 | 2,250,000 | 900,000 | - | 4,500,000 |
767
- | Unyama | Kinene Cing Ma Konyi | Agriculture | 7,888,000 | 7,888,000 | 14/3/2019 | 2,630,000 | 1,972,500 | - | 5,915,500 |
768
- | Bungatira | Mon Yele Ayela | Agriculture | 6,133,000 | 6,133,000 | 14/4/2019 | 1,533,300 | - | - | 6,133,000 |
769
- | Bungatira | Nyeko Rac Women Group | Agriculture | 6,133,000 | 6,133,000 | 14/04/2019 | 1,533,300 | - | - | 6,133,000 |
770
- | Bungatira | Mar ber Women Group | Wholesale and Retail Trade | 6,133,000 | 6,133,000 | 14/02/2019 | 2,556,000 | 1,575,000 | - | 4,558,000 |
771
- | Bungatira | Loyo Lega Women Group | Agriculture | 6,133,000 | 6,133,000 | 14/02/2019 | 2,044,800 | 2,556,000 | - | 4,088,200 |
772
- | Bungatira | Tii Ki Lweti Women Group | Wholesale and Retail Trade | 6,133,000 | 6,133,000 | 14/02/2019 | 1,533,300 | - | - | 6,133,000 |
773
- | Bungatira | Can Pe Two Women Group | Agriculture | 8,643,000 | 7,000,000 | 14/4/2019 | 2,160,900 | - | - | 7,000,000 |
774
-
775
-
776
- 29
777
-
778
- ---
779
-
780
- | Bungatira | Good Faith Women Group | Wholesale and Retail Trade | 8,643,000 | 6,500,000 | 8/6/2019 | 200,000 | 1,200,000 | - | 5,300,000 |
781
- |---|---|---|---|---|---|---|---|---|---|
782
- | Paicho | Te-Olam Gang ber Women Group | Agriculture | 6,680,000 | 6,680,000 | 14/2/2019 | 2,783,500 | 558,000 | - | 6,122,000 |
783
- | Bungatira | Rwot Omiyo Women Group | Wholesale and Retail Trade | 6,133,000 | 6,133,000 | 14/2/2019 | 2,557,500 | - | - | 6,133,000 |
784
- | Bungatira | Tidi Ma Myero Women Group | Wholesale and Retail Trade | 6,680,000 | 6,680,000 | 14/02/2019 | 2,783,500 | - | - | 6,680,000 |
785
- | Bungatira | Gene Ber Women Group | Agriculture | 6,133,000 | 6,133,000 | 14//04/2019 | 1,533,300 | - | - | 6,133,000 |
786
- | Palaro | Lugore Tute Ki Cingi | Agriculture | 6,680,000 | 6,680,000 | 14/02/2019 | 2,785,000 | 1,500,000 | - | 5,180,000 |
787
- | Palaro | Kiteny Rwot Omiya Women Group | Industry | 6,680,000 | 6,680,000 | 14/o2/2019 | 2,785,000 | 999,400 | - | 5,680,600 |
788
- | Unyama | Loyo Boo Ket Can Itic | Wholesale and Retail Trade | 8,086,000 | 8,086,000 | 14/03/2019 | 2,695,600 | - | - | 8,086,000 |
789
- | Paicho | Dwere Kec Kakare | Agriculture | 7,788,000 | 7,288,000 | 14/04/2019 | 1,821,900 | 2,035,000 | - | 5,253,000 |
790
- | Unyama | Loyoboo kica ber Kidere | Industry | 5,300,000 | 5,300,000 | 14/01/2019 | 2,650,200 | 1,464,000 | - | 3,836,000 |
791
- | Paicho | Anyomotwwon Pit Odong Ki Mon | Wholesale and Retail Trade | 8,003,000 | 8,003,000 | 14/03/2019 | 2,668,000 | 1,971,100 | - | 6,031,900 |
792
- | Awach | Waribu Cing wa | Wholesale and Retail Trade | 6,680,000 | 6,680,000 | 14/01/2019 | 3,340,200 | 1,279,900 | - | 5,400,100 |
793
- | Awach | Min Latin Women's Group | Whole Sale and Retail Trade | 6,986,000 | 6,776,000 | 29-10-2017 | 6,776,000 | 1,464,000 | 264,600 | 5,576,600 |
794
- | Awach | Lagada Yil ki Wade Women's Group | Entertainment & Recreation | 8,985,000 | 8,780,000 | 11/10/2017 | 8,780,000 | 4,997,000 | 264,650 | 5,557,650 |
795
-
796
-
797
- 30
798
-
799
- ---
800
-
801
- | Awach | Pit odong ki Mon Women's Group | Trade & Whole sale | 6,680,000 | 5,650,000 | 10/4/2017 | 5,650,000 | 2,036,900 | 180,655 | 4,229,255 |
802
- |---|---|---|---|---|---|---|---|---|---|
803
- | Awach | Atek Ki Lwak Women's Group | Whole Sale and Retail Trade | 6,680,000 | 5,201,500 | 4/10/2017 | 5,201,500 | 2,669,800 | 160,005 | 4,492,705 |
804
- | Awach | Lacede Women's Group | Agriculture | 8,068,000 | 7,440,000 | 3/3/2018 | 7,440,000 | 2,080,000 | 307,000 | 6,513,500 |
805
- | Awach | Wot Tek Women's Group | Agriculture | 8,068,000 | 6,880,000 | 1/2/2018 | 6,880,000 | 4,588,000 | 171,950 | 5,331,450 |
806
- | Bungatira | Lacan Pe Kun Women's Group | Whole Sale and Retail Trade | 6,100,000 | 5,200,000 | 4/10/2017 | 5,200,000 | 2,601,000 | 154,980 | 3,718,890 |
807
- | Bungatira | Adeg Anii Fish Mongers Women's Group | Trade & Whole sale | 6,500,000 | 5,310,000 | 4/10/2017 | 5,310,000 | 2,210,400 | 177,090 | 3,718,890 |
808
- | Can Deg Mone Women's Group | Whole Sale and Retail Trade | 6,680,000 | 5,480,000 | 7/10/2017 | 5,480,000 | 896,700 | 251,165 | 5,274,465 |
809
- | Bungatira | Opit Lutino Women's Group | Agriculture | 6,133,000 | 5,950,000 | 10/1/2018 | 5,950,000 | 1,670,800 | 213,960 | 4,493,160 |
810
- | Bungatira | Tene Ki Lawoti Women's Group | Agriculture | 6,133,000 | 5,633,000 | 4/1/2018 | 5,633,000 | 800,000 | 241,650 | 5,074,650 |
811
- | Bungatira | Mar Latini 'A' Women's Group | Agriculture | 6,133,000 | 6,133,000 | 10/1/2018 | 6,133,000 | 1,022,200 | 255,540 | 5,366,340 |
812
- | Bungatira | Rwot Twero Women's Group | Whole Sale and Retail Trade | 6,680,000 | 5,048,000 | 4/10/2017 | 5,048,000 | 841,400 | 210,330 | 4,416,930 |
813
- | Bungatira | Kabake Women Group | Agriculture | 6,133,000 | 6,133,000 | 4/1/2018 | 6,133,000 | 5,172,800 | 102,210 | 4,416,930 |
814
- | Bungatira | Rwot Oyee Women's Group | Agriculture | 6,680,000 | 6,133,000 | 2/2/2018 | 6,133,000 | 5,028,000 | 78,000 | 4,437,000 |
815
-
816
-
817
- Bungatira
818
-
819
- 31
820
-
821
- ---
822
-
823
- | Paicho | Lakwela Waribu Cingwa Women's Group | Whole Sale and Retail Trade | 6,680,000 | 6,570,000 | 4/10/2017 | 6,570,000 | 6,570,500 | - | 2,736,300 |
824
- |---|---|---|---|---|---|---|---|---|---|
825
- | Paicho | Te Olam Lubanga Mamiyo Women's Group | Whole Sale and Retail Trade | 6,680,000 | 6,339,000 | 4/10/2017 | 6,339,000 | 6,339,000 | - | 3,171,000 |
826
- | Paicho | Corner Mon Bunyu Women's Group | Whole Sale and Retail Trade | 6,680,000 | 5,781,000 | 4/10/2017 | 5,781,000 | 2,846,200 | 146,740 | 3,707,940 |
827
- | Paicho | Lalworo Tem Gumi Women Group | Whole Sale and Retail Trade | 6,760,000 | 6,700,000 | 4/10/2017 | 6,700,000 | 6,700,000 | - | 3,820,000 |
828
- | Palaro | Mede Centre Mon Aye Guti Women Group | Agriculture | 7,350,000 | 7,350,000 | 9/3/2018 | 7,350,000 | 3,000,000 | 146,740 | 5,932,740 |
829
- | Palaro | Awal Aboro Opoo Lacen Women Group | Agriculture | 8,086,000 | 6,805,000 | 1/12/2017 | 6,805,000 | 314,000 | 324,550 | 7,129,550 |
830
- | Palaro | Poko Ogali Odokomit Women's Group | Agriculture | 7,086,000 | 6,880,000 | 2/1/2018 | 6,880,000 | 2,630,000 | 212,500 | 4,462,500 |
831
- | Palaro | Oroko Waneno Anyim Women Group | Whole Sale and Retail Trade | 6,680,000 | 5,905,000 | 4/10/2017 | 5,905,000 | 2,500,000 | 170,250 | 3,405,000 |
832
- | Unyama | Unyama B Pit Lit Women Group | Agriculture | 8,643,000 | 7,755,000 | 4/10/2017 | 7,755,000 | 4,334,200 | 171,040 | 5,232,040 |
833
- | Unyama | Unyama B Can Kelo Diro Women Group | Whole Sale and Retail Trade | 6,696,000 | 5,668,000 | 4/10/2017 | 5,668,000 | 3,234,500 | 121,675 | 5,314,175 |
834
- | Unyama | Agung Lubanga Pe Wany | Agriculture | 8,086,000 | 7,080,000 | 2/1/2018 | 7,080,000 | 2,660,000 | 232,050 | 5,542,050 |
835
-
836
-
837
- 32
838
-
839
- ---
840
-
841
- | Unyama | Lapeta Lubanga Ma Miyo Women's Group | Agriculture | 8,086,000 | 7,080,000 | 22/2//2018 | 7,080,000 | 7,168,500 | 88,500 | 5,398,500 |
842
- |---|---|---|---|---|---|---|---|---|---|
843
- | Unyama | Coopil Ribe Ber Women Group | Agriculture | 8,643,000 | 7,755,000 | 6/12/2017 | 7,755,000 | 996,000 | 337,950 | 7,500,950 |
844
- || **Total** || **357,531,000** | **331,887,500** || **230,679,500** | **107,919,800** | **4,985,780** | **270,006,460** |
845
-
846
-
847
- 33
848
-
849
- ---
850
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
reports/Gulu DLG Report of Auditor General 2019/Gulu DLG Report of Auditor General 2019.pdf DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7f0c11e6225806b8dbb76c612fd61c0d9ccfbfca8c927963738672484d24fffd
3
- size 2682939
 
 
 
 
reports/Gulu DLG Report of Auditor General 2019/Gulu DLG Report of Auditor General 2019.txt DELETED
@@ -1,1111 +0,0 @@
1
- OFFICE OF THE AUDITOR GENERAL
2
- THE REPUBLIC OF UGANDA
3
- REPORT OF THE AUDITOR GENERAL
4
-
5
- ON THE FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
6
-
7
- FOR THE YEAR ENDED 30 TH JUNE 2019
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
- Table of Contents
20
- Page
21
- Table of Contents - ii
22
- List of Acronyms - iii
23
- Opinion - 1
24
- Basis for Opinion - 1
25
- Key Audit Matters - 1
26
- 1.0 Implementation of Budget approved by Parliament - 1
27
- Emphasis of Matter - 4
28
- 2.0 Accumulated Payables - 4
29
- Other Information - 4
30
- Management’s Responsibility for the Financial Statements - 4
31
- Auditor’s Responsibility - 5
32
- Other Reporting Responsibilities - 6
33
- Report on the Audit of Compliance with Legislation - 6
34
- 3.0 Uganda Intergovernmental Fiscal Transfers Program for Results (UgFIT) - 6
35
- 4.0 Implementation of the Uganda Road Funds - 8
36
- 5.0 Implementation Of Northern Uganda Social Action Fund Three (NUSAF3) - 9
37
- 6.0 Management of the Youth Livelihood Project (YLP) - 11
38
- 7.0 Uganda Women Entrepreneurship Program (UWEP) - 13
39
- 8.0 Water for Use and Water For Production - 15
40
- APPENDICES - 17
41
- Appendix I: Implementation of Key Outputs - 17
42
- Appendix II: Notable Project Achievements at Sub-project level - 18
43
- Appendix III: Delayed Project Implementation - 19
44
- Appendix IV: Low Recovery of YLP funds - 21
45
- Appendix V: Non Existent Groups - 28
46
- Appendix VI: Non-Compliance with Repayment schedules- UWEP - 29
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
-
58
- List of Acronyms
59
-
60
- Acronym Meaning
61
- BOU Bank of Uganda
62
- CoC Certificates of Compliance
63
- CWC Community Watershed Committee
64
- GoU Government of Uganda
65
- IESBA International Ethics Standards Board for Accountants
66
- INTOSAI International Organisation of Supreme Audit Institutions
67
- ISSAIs International Standards of Supreme Audit Institutions
68
- LGFAM Local Government Financial and Accounting Manual
69
- NDP National Development Plan
70
- NPA National Planning Authority
71
- NUSAF Northern Uganda Social Action Fund
72
- PBS Performance Budgeting System
73
- PFMA Public Finance Management Act
74
- TSSA Treasury Sub Single Account
75
- TSA Treasury Single Account
76
- UgIFT Uganda Intergovernmental Fiscal Transfers Program for Results
77
- UGX Uganda Shillings
78
- URF Uganda Road Fund
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
- REPORT OF THE AUDITOR GENERAL
94
-
95
- ON THE AUDIT OF FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
96
-
97
- FOR THE YEAR ENDED 30 TH JUNE 2019
98
-
99
- THE RT. HON. SPEAKER OF PARLIAMENT
100
-
101
- Opinion
102
-
103
- I have audited the accompanying financial statements of Gulu District Local Government, which comprise the Statement of Financial Position as at 30 th June 2019, the Statement of Financial Performance, Statement of Changes in Equity, Statement of Cash Flows, together with other accompanying statements for the year then ended, and notes to the financial statements, including a summary of significant accounting policies.
104
-
105
- In my opinion, the financial statements of Gulu District Local Government for the year ended 30 th June 2019 are prepared, in all material respects, following section 51 of the Public Finance Management Act (PFMA), 2015 and the Financial Reporting Guide, 2018.
106
-
107
- Basis for Opinion
108
-
109
- I conducted my audit following the International Standards of Supreme Audit Institutions (ISSAIs). My responsibilities under those standards are further described in the Auditor’s Responsibilities for the Audit of the Financial Statements section of my report. I am independent of the District following the Constitution of the Republic of Uganda (1995) as amended, the National Audit Act, 2008, the International Organisation of Supreme Audit Institutions (INTOSAI) Code of Ethics, the International Ethics Standards Board for Accountants’ Code of Ethics for Professional Accountants (IESBA Code) and other independence requirements applicable to performing audits of Financial Statements in Uganda. I have fulfilled my ethical responsibilities following the other requirements and the IESBA Code. I believe that the audit evidence I have obtained is sufficient and appropriate to provide a basis for my opinion.
110
-
111
- Key Audit Matters
112
-
113
- Key audit matters are those matters that, in my professional judgment, were of most significance in my audit of the financial statements of the current period. These matters were addressed in the context of my audit of the financial statements as a whole, and when forming my opinion thereon, and I do not provide a separate opinion on these matters.
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
- It is against this background that budget performance was considered as a key audit matter for the audit year. The focus was on the attainment of planned outputs, which greatly affect the wellbeing of communities and have a bearing on the attainment of programme objectives as stated in the statement of performance Consequently, I developed specific audit procedures to;
126
-
127
- - Establish the revenue performance for the year under review (extent of revenue collection, including local revenue).
128
- - Ascertain the extent of absorption of released funds, including conditional grants and donor funds.
129
- - Assess the extent of attainment of key planned outputs.
130
-
131
- Based on the procedures performed, I made the following observations;
132
-
133
- S/N Issue/Observation Recommendation(s)
134
- 1.1 Local Revenue Performance Section 3.3(1) of the LGFAM, 2007, under budget principles guides that estimates must reflect revenue, which can be realized from anticipated conditions. Section 3.4.1(4) further requires realistic revenue forecasting as a precondition for successful budgeting.I reviewed the statement of appropriation accounts in financial statements; and noted that out of the revised budgeted total revenue of UGX. 34,425,432,088 for the year 2018/19, UGX.38,609,680,482 was collected representing a performance of 96.7% of the target. The performance of each revenue source is summarized in the table below;Revenue SourceRevised Approved BudgetWarrants VarianceTaxesNon-Tax Revenue Sub TotalTransfers from Consolidated fund Grants Received Transfers from other Gov’t Units Grants from International Orgn Sub Total%age perfor mance 107.80 10099.8 00127,968,028 137,968,028 10,000,000 638,414,972 628,414,972 10,000,000 98.4766,383,000 766,383,00024,881,053,554 24,829,032,75952,020,7950 08,066,995,534 7,707,269,668359,725,86695.5711,000,000711,000,00033,659,049,088 32,536,302,4271,122,746,66 196.70 0Grand Total 34,425,432,088 33,302,685,427 856,510,89096.7local revenue performance of 100% and the overall revenue performance of 96.7% is commendable as it enhances the funding of planned activities, which in turn improves service delivery, if well spent.The Accounting Officer attributed the above performance to theThe commended the Accounting Officer and advised that the revenue is sustained.performanceI
135
-
136
-
137
-
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
-
147
-
148
-
149
-
150
-
151
-
152
-
153
-
154
-
155
-
156
-
157
-
158
-
159
-
160
- stringent revenue collection measures put in place by the council in respect of local revenue.
161
- 1.2 Unrealistic budget estimate for donor funding Section 10 (a) of the PFMA, 2015 requires the annual budget to indicate the financing estimates for the financial year to which the budget relates. These estimates should be realistic and achievable by management. It was noted that the district budgeted to receive donor funds of UGX.711,000,000 which was not realised. No evidence was availed to show that the estimate was based on any memorandum of understanding with any donor, rendering the budget estimate unrealistic.Unrealistic budget estimates lead to poor planning which may result in over commitments with the anticipation of realization of revenue.The Accounting Officer explained that the budget provision was based on the assumption that the district would again receive donor funds from UNICEF for immunization, GAVI for HIV and World Health Organization, as was the case the prior year. advised the Accounting Officer to ensure that donor budget estimates are based on an undertaking and should be realistic and achievable to enable proper planning. In instances where funds are not realized, the budget ought to be revised.I
162
-
163
- 1.3 Absorption of funds Section 15 (1) of the Public Finance and Management Act, 2007 states that after approval of the annual budget by Parliament, the Secretary to Treasury shall issue the annual cash flow plan of Government, based on the procurement plans, work plans and recruitment plans approved by Parliament. Section 15 (2) states that the annual cash flow plan issued under subsection (1) shall be the basis for the release of funds by the Accountant General to the Accounting Officers. Further to this, section 15 (3) requires an Accounting Officer to commit the budget of a vote, based on the annual cash flow plan issued under this section.I observed that out of total warrants of UGX.33,302,685,427, UGX.28,216,604,934 was spent by the entity representing an absorption level of 84.73%. Refer to Table below;theWarrants (Release) [A] BillionExpenditure [B] Billions33.303 28.217Unspent [A-B]Billions 5.086above implies that the district was unable to absorb all the available funds to implement the district activities.  The Accounting Officer attributed the unspent balances of UGX.4.4 billions to wages and salaries. He explained that the fact that the budget for Gulu District has never changed since the creation of Omoro District Local Government which leads to the distric receiving excess founds under salaries and wages.The I advised the Accounting Officer to liaise with Ministry of Finance Planning and Economic Development the anomaly.to address
164
-
165
-
166
-
167
-
168
-
169
- Implementation of Key Outputs Section 45 (3) of the PFMA, 2015 states that, an Accounting Officer shall enter into an annual budget performance contract with the Secretary to the Treasury which shall bind the Accounting Officer to deliver on the activities in the work plan.1.4In order to achieve its mandate, the district planned to implement and achieve both recurrent and development activities under various programme and projects. The key deliverables for the financial year under review are detailed in Appendix I. advised the Accounting Officer to enhance supervision and monitoring for all programs implementation in order to achieve objectives of National Development Plan II.theI
170
-
171
-
172
-
173
-
174
-
175
-
176
-
177
-
178
-
179
-
180
-
181
-
182
-
183
-
184
-
185
- The good performance under NUSAF3 and Uganda Road Fund was attributed to close supervision and monitoring of activity implementation.
186
-
187
- Emphasis of Matter
188
-
189
- Without qualifying my opinion, I draw attention to the following matters disclosed in the financial statements:
190
-
191
- 2.0 Accumulated Payables
192
-
193
- Included in the payables balance disclosed in Note 22 on page 37 of the financial statements is UGX.3,105,261,425 which relates to sundry creditors/court awards.
194
-
195
- There is a risk that the District propertly may attached for failure to settle the court award promptly.
196
-
197
- The Accounting Officer explained that the District got a court order that resulted in the attachment of some district land by the court bailiffs as an alternative means of offsetting its court commitments. By the close of the financial year under review, court bailiffs had disposed some of the land to a tune of UGX.1,680,000,000 as communicated by the court bailiffs. However, the money did not go through the district normal system of operation for revenue to be recognized and expensed to offset the court costs.
198
-
199
- The Accounting Officer further stated that the district had communicated to the Accountant General for guidance on the recognition of revenue and expense to reduce the outstanding court award obligation which response was being awaited.
200
-
201
- I advised the Accounting Officer to follow up on the matter with the Accountant General and ensure the revenue and expenditure in question are recognized in the financial statements.
202
-
203
- Other Information
204
-
205
- The Accounting Officer is responsible for the Other Information. The Other Information comprises the statement of responsibilities of the Accounting Officer and the commentaries by the Head of Accounts and the Accounting Officer, and other supplementary information. The Other Information does not include the financial statements and my auditors’ report thereon. My opinion on the financial statements does not cover the Other Information and I do not express an audit opinion or any form of assurance conclusion thereon.
206
-
207
-
208
-
209
-
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
- The Accounting Officer is also responsible for the preparation of financial statements following the requirements of the Public Finance Management Act (PFMA), 2015 and the Financial Reporting Guide, 2018 and for such internal control as management determines necessary to enable the preparation of financial statements that are free from material misstatement whether due to fraud or error.
218
-
219
- In preparing the financial statements, the Accounting Officer is responsible for assessing the District’s ability to continue as a going concern, disclosing, as applicable, matters related to going concern and using the going concern basis of accounting, unless the Accounting Officer has a realistic alternative to the contrary.
220
-
221
- Auditor’s Responsibility
222
-
223
- My objectives are to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error and to issue an auditor’s report that includes my opinion. Reasonable assurance is a high level of assurance but is not a guarantee that an audit conducted following ISSAIs will always detect a material misstatement when it exists. Misstatements can arise from fraud or error and are considered material if, individually or in the aggregate, they could reasonably be expected to influence the economic decisions of users taken based on these financial statements. As part of an audit following ISSAI’s, I exercise professional judgment and maintain professional scepticism throughout the audit. I also:
224
-
225
- - Identify and assess the risks of material misstatement of the financial statements, whether due to fraud or error, design and perform audit procedures responsive to those risks, and obtain audit evidence that is sufficient and appropriate to provide a basis for my opinion. The risk of not detecting a material misstatement resulting from fraud is higher than for one resulting from error, as fraud may involve collusion, forgery, intentional omissions, misrepresentations, or the override of internal control.
226
- - Obtain an understanding of internal control relevant to the audit to design audit procedures that are appropriate in the circumstances, but not to express an opinion on the effectiveness of the District’s internal control.
227
- - Evaluate the appropriateness of accounting policies used and the reasonableness of accounting estimates and related disclosures made by management.
228
- - Conclude on the appropriateness of management’s use of the going concern basis of accounting and, based on the audit evidence obtained, whether a material uncertainty exists related to events or conditions that may cast significant doubt on the District’s ability to deliver its mandate. If I conclude that a material uncertainty exists, I am required to draw attention in my auditor’s report to the related disclosures in the financial statements or, if such disclosures are inadequate, to modify my opinion. My conclusions are based on the audit evidence obtained up to the date of my auditor’s report. However, future events or conditions may cause the District to fail to deliver its mandate.
229
- - Evaluate the overall presentation, structure, and content of the financial statements, including the disclosures, and whether the financial statements represent the underlying transactions and events in a manner that achieves fair presentation.
230
-
231
-
232
-
233
-
234
-
235
-
236
-
237
-
238
-
239
-
240
-
241
- From the matters communicated with the Accounting Officer, I determine those matters that were of most significance in the audit of the financial statements of the current period and are therefore the key audit matters. I describe these matters in my auditor’s report unless law or regulation precludes public disclosure about the matter or when, in extremely rare circumstances, I determine that a matter should not be communicated in my report because the adverse consequences of doing so would reasonably be expected to outweigh the public interest benefits of such communication.
242
-
243
- Other Reporting Responsibilities
244
-
245
- Following Section 19 (1) of the National Audit Act, 2008, I report to you, based on my work described on the audit of Financial Statements, that; except for the matters raised in compliance with legislation section below, and whose effect has been considered in forming my opinion on financial statements, the activities, financial transactions and information reflected in the financial statements that have come to my notice during the audit, are in all material respects, in compliance with the authorities which govern them.
246
-
247
- Report on the Audit of Compliance with Legislation
248
-
249
- The material findings in respect of the compliance criteria for the applicable subject matters are as follows;
250
-
251
- 3.0
252
-
253
- Uganda Intergovernmental Fiscal Transfers Program for Results (UgFIT).
254
-
255
- The Uganda Intergovernmental Fiscal Transfers Program for Results (UgIFT) is a Gov- ernment Program being implemented under the Ministries of Health, Education, through the Districts and municipal councils. The program which started in the financial year 2018/19 was designed to address the financing gaps in service delivery specifically in the Health and Education sectors.
256
-
257
- The audit objective was to establish whether; Project funds were budgeted, disbursed and utilized in the implementation of planned project activities.
258
-
259
- The District budgeted to construct Palaro Seed secondary school and signed a contract with M/s.Davrich Company (U) Ltd on 13 th May 2019 under Procurement Ref. MoES/Wrks/2018-2019/00119 at a contract sum of UGX.1,757,391,000 with a contract period of three years running from 2018/2019- 2020/2021.
260
-
261
- The District realised UGX.464,632,599 for construction of which UGX.301,700,578 was advanced to contractor leaving the balance of UGX.162,932,021 which was diverted to the construction of staff housed and pit latrines at Paibona Primary School and Omoti Primary School.
262
-
263
-
264
-
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
-
273
- from the site looking for the specified hard burnt clay bricks but had failed to get the clay bricks sufficient for the works. The co-ordinator indicated that the challenge had two major impacts;
274
-
275
- - It was going to delay the progress of the project since it is a key material required during the implementation of the project.
276
- - It was making the project unpopular to the locals because it was not supporting them financially.
277
-
278
- The communication by the contractor requested for attention and Technical advice concerning the challenge. After consultations with the Ministry of Education over the specification of the bricks to be used and obtaining a no objection works ought to have started. However, little works had been done by the time of audit conclusion as shown below;-
279
-
280
- Site office and store Foundation work done
281
- Some materials on site Some materials on site
282
-
283
-
284
-
285
-
286
- The Accounting Officer explained that the land for Palaro Seed Secondary School is located in a virgin land without any existing structure; the land, therefore, required physical planning before any development could take place.
287
-
288
- Regarding local materials in the project area, the bricks are burnt clay brick sand, hard cores, and aggregates. However, the regional largely lacks burnt clay bricks as specified and provided for in the technical specifications. Sourcing of burnt clay bricks caused delays in project implementation.
289
-
290
-
291
-
292
-
293
-
294
-
295
-
296
-
297
-
298
-
299
-
300
- Lack of a land title exposes the Government investment to risk in case of a land dispute.
301
-
302
- The Accounting Officer explained that the process of acquiring land title was ongoing.
303
-
304
- I advised the Accounting Officer to expedite the process of obtaining a land title to avoid encroachment and land disputes.
305
-
306
- 4.0 Implementation of the Uganda Road Funds
307
-
308
- Uganda Road Fund (URF) is a Government of Uganda programme with an overall purpose of ensuring that all public roads are maintained at all times through the provision of adequate and stable financing for routine and periodic maintenance undertaken by designated agencies. Road maintenance is essential to: preserve the roads in their originally constructed condition; protect adjacent resources; provide reliable transport at reduced costs along the routes and contribute to the economic welfare of the communities.
309
-
310
- The objectives of my audit were to ascertain whether the budgeted amounts were fully released and spent in line with the intended purposes and assess whether the programme activities were implemented following the work plan and to the desired quality.
311
-
312
- During the year under review, the district received UGX. 672,244,981 for routine manual maintenance, routine mechanised maintenance, periodic maintenance, and emergency activities on several District roads using Road gangs and the force Account mechanism.
313
-
314
- However; the following observations were made;
315
-
316
- i) Paicho- Patiko (22.4km).
317
-
318
- It was observed that the works were done but the road had potholes in some sections a broken culvert, a silted culvert line and water was crossing the road in some part. Gravel was insufficiently compacted along sections where Armco culverts were installed.
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
- Gravel insufficiently compacted Potholes
331
-
332
- iii) Awach- Paibona Road (19.6km).
333
-
334
- It was observed that 13km was graveled but the water had swept away half of the road at chainage 10.9 requiring immediate intervention as shown below.
335
-
336
- Gravelling done. No mitre drains. Half of the road swept away
337
- Burrow pit not filled Half of the road swept away
338
-
339
-
340
-
341
-
342
- iv) Abera- Awach (19.2km).
343
-
344
- It was observed that the road was graveled, but a section of the road was slippery as the gravel was not sufficiently compacted as shown;
345
-
346
- Section of the road slippery Section of the road slippery
347
-
348
-
349
-
350
-
351
-
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
-
360
-
361
-
362
-
363
-
364
- The audit objective was to establish whether the Project planning and beneficiary selection were properly undertaken, funds were timely released, and whether project implementation was properly undertaken. Also, I ascertained whether reporting, accountability, and audit were done according to the requirements of the project and that project asset was properly managed.
365
-
366
- It was observed that during the year the District received UGX.5,207,691 for NUSAF3 programme.
367
-
368
- 5.1 Project Implementation
369
-
370
- The project Guidelines and Financing Agreements require the CWC to ensure effective implementation of the subprojects. Section 6.2.6 of the NUSAF3 Guidelines requires that at the time of implementation of the sub-projects, the potential environmental and social impacts identified and mitigation measures are taken.
371
-
372
- A review of the project implementation revealed the following;
373
-
374
- 5.1.1 Notable Project Achievements (Success Stories)
375
-
376
- Inspection of NUSAF3 sub-projects in the district revealed that the district registered notable achievements under Sustainable Livelihood Pilot (SLP). Some of these include Dii - cwinyi Self-help Group and Peko mito tic self-help group. For details of sub-projects with notable achievements, refer to Appendix II.
377
-
378
- Interview with the sub-project members revealed that the achievements were majorly attributed to;
379
-
380
- - Adherence to the 5 core principles of NUSAF3 which is weekly savings, weekly meeting, proper record keeping, timely loan repayments and inter loaning amongst group members.
381
- - Daily attendance by members and all get involved in the business.
382
- - The creativity of the groups, in introducing a penalty for late payments.
383
- - Leadership skills after the training they received.
384
- - They were already existing business groups so it was not a problem working as a team.
385
- - Cooperation among members who feel they owned the project.
386
- - Support visits by the Village Livelihood Improvement Committee (VLICs) and the Community Business Agents (CBAs).
387
- - Intercluster meetings and visits to exchange knowledge and various experiences during the visits. These are lessons for other sub-project members to learn from.
388
-
389
-
390
-
391
-
392
-
393
-
394
-
395
-
396
-
397
-
398
-
399
- - Delays in capturing details in the biometric machine due to network problem, slowness in loading watershed information and blocked sim cards.
400
- - Some Labour Intensive Public Works (LIPW) sub projects are very demanding in terms of materials and take much more than the stipulated percentage.
401
- - Some of the community members still struggle to appreciate the 30% savings which is mandatory in the LIPW sub- component.
402
- - Political interference in sub component which makes the work very difficult particularly for the technical team.
403
- - Many of the Community Interest Groups (CIGs) struggle to follow the 5 core principle which is a requirement.
404
- - The groups still struggle with issues on group dynamics and affect the cohesion of the groups.
405
- - Most of the group members are illiterate and struggle to cope especially when it comes to comprehending and internalizing the concept of the project requirements.
406
- - Some of the Village Livelihood Investment(VLIC) lack the financial knowledge that should help steer the pilot project to another level.
407
- - The management of the SHGs is quite demanding and yet the CBAs are paid very little at the end of the day.
408
- - Misunderstanding by some landowners also led to delays in project implementation.
409
- - The number of women beneficiaries which outweighs the number of men beneficiaries implied handling harder tasks like uprooting of trees stumps and anti- hills.
410
- - Unwillingness to save by some CIG members and irregular attendance at weekly meetings by some CIG members.
411
- - Verification of self Help groups took a lot of time as Gulu graduated up to 149 self Help groups. The above challenges led to delays in the implementation of work and hence less output in some projects.
412
-
413
- The Accounting officer explained that the district was arranging refresher training for the CBAs and CFs
414
-
415
- I advised the Accounting Officer to facilitate CBAs and CFs to quicken the process of sensitization and change the community's mindset.
416
-
417
- 6.0 Management of the Youth Livelihood Project (YLP)
418
-
419
-
420
-
421
-
422
-
423
-
424
-
425
-
426
-
427
-
428
-
429
- Section 6 (i) requires all the Project Grants disbursed to each Youth Interest Group (YIG) to be treated as a Revolving Fund to be repaid following the Project Financing Agreement between the District Local Government and the beneficiary Youth Interest Group, witnessed by the Area Resident State Attorney.
430
-
431
- However, an analysis of the recovery of the programme funds revealed that out of UGX.576,878,157 due for recovery only UGX.125,659,168 (22%) was recovered leaving UGX.451,218,989 (78%) outstanding.
432
-
433
- It was further noted that 16 youth interest groups had nil deposit since the groups received funds way back in 2015, 2016, 2017, and 2018 as shown in Appendix IV.
434
-
435
- According to the monitoring reports availed, poor recovery of the revolving funds was attributed to several factors which include the following:
436
-
437
- - Inadequate operational funds for monitoring project implementation and recoveries of funds from ever increasing youth groups. Some of the groups are located in the new district of Omoro which was curved out of Gulu District.
438
-
439
- - Mismanagement of funds by some group leaders of the Youth Interest Groups. Examples of such groups include; Oguru Ulonygiu Produce buying and selling, Adak Alliance Piggery Project, Pok Ogali Youth Ox-Cultivation Project, Patwol Can Kaya Ox-Cultivation, Kiteny Tam Pi Diki Youth Piggery Project, Awalaboro Ox-Cultivation, Acutomer Par Pi Anyim Ox-Cultivation, Owak Youth Piggery Project, Oturuloya Produce Buying & Selling, Paromo Jale Ber Youth Piggery, Obiya Youth Piggery, hence a total of UGX. 86,268,350 will never be recovered from the above groups since they do not exist. Appendix V refers.
440
-
441
- - Most groups came together to access funds and after accessing funds, they disintegrated.
442
-
443
- because of the above, there is a risk that full recovery will not be realized.
444
-
445
- Failure to recover the revolving funds from the Youth Interest Groups defaulters does not only deny other approved youth groups access to the funds but also defeats the overall strategic objectives of the programme.
446
-
447
-
448
-
449
-
450
-
451
-
452
-
453
-
454
-
455
-
456
-
457
- Government stands to lose the funds in question as inspection further revealed that there was no activity on the ground for the poultry project as shown in the summary below;
458
-
459
- Project Sector Pictures Remarks name
460
- Patalira Agriculture Oxen for the group Group received UGX.9,400,000 on
461
- Youth Animal 19-Mar-2019. Bought 8 bulls, 2
462
- Traction Ox-ploughs, and have planted rice
463
- on 11 acres of land. Weeding
464
- already done. Planning to plant
465
- millet in September 2019.
466
- Challenges;
467
- 2 members left the group ( ladies) -The rice garden was attacked by Hippos which
468
- destroyed the rice.
469
-
470
- Group members in the rice garden
471
- Unyama A Poultry Diro Pe Rom Youth PoultryEmpty chicken house Group received UGX 8,580,000 on 19-Nov-2018  Only UGX 750,000 has been recovered to date. The project is no longer in existence because all the birds died. Only 2 people still existed in the group as the 9 left the group. Challenges; Lack of market for the birds when they mature. - Members got busy and others got jobs Lack of a veterinary doctor to help when birds got sick. 2 members remained in the grouponly---
472
-
473
-
474
-
475
-
476
-
477
-
478
-
479
-
480
-
481
-
482
-
483
-
484
-
485
-
486
- The audit objective was to establish whether; all funds budgeted under UWEP during the period under review were released and used only for the program, outstanding advances to the women groups were repaid following the agreed repayment schedule and to establish reasons for failure or delays to repay the funds. The following observations were made;
487
-
488
- 7.1 Non-compliance with Repayment Schedules
489
-
490
- Chapter 6 (i & ii) of the youth livelihood program guideline document similarly used for UWEP provides that all the Project Grants disbursed to each Youth Interest Group (YIG) will be treated as a Revolving Fund to be repaid following the Project Financing Agreement between the District Local Government and the beneficiary Women Interest Group.
491
-
492
- It further provides that the scheduling of the repayment should be based on the project maturity, business plan and cash flow projections generated at the design of the project.
493
-
494
- However, an analysis of the recovery of the programme funds revealed that out of UGX. 230,679,500 due for recovery only UGX.107,919,800 (47%) was recovered leaving a balance of UGX. 122,759,700 (53%) outstanding as shown in Appendix VI.
495
-
496
- Delayed repayment was attributed to various causes such as; bad season and change of weather, fluctuation in prices and losses made during peak season, competitive market because most of them deal in traditional crops, poor road network which affects market linkage, some 2 groups in Awach each lost a pair of oxen due to diseases i.e. Lacede Women group and Wot Tek Women's group, most women groups in Palaro Sub County are inaccessible by vehicles and are very far e.g. Oroko Waneno Anyim women group, hence difficulty in transporting their crops to the markets.
497
-
498
- Failure to repay on time implies that other eligible groups are unable to access the funds since the programme operates as a revolving fund. The accounting officer explained that he had instructed the focal point person to strengthen the monitoring of the affected Groups that had been rescheduled for repayment.
499
-
500
- I advised the Accounting Officer to address the identified causes to ensure that all outstanding amounts are recovered.
501
-
502
- Project name Sector Pictures Remarks
503
- AnyomotwonOdong Ki MonPit RetailWholesale and Trade  Project received UGX. 8,003,000
504
- on 13-Dec-2018 and UGX 1,971,100 recovered.  Produce in the store.
505
- Produce store the member keeping them was not around.
506
-
507
-
508
-
509
-
510
- - Records were not seen because
511
-
512
-
513
-
514
-
515
-
516
-
517
-
518
-
519
-
520
-
521
-
522
- Loyoboo Akem Agriculture Kwene women group
523
-
524
- Some of the group members
525
-
526
- - Project received UGX 8,086,000 on 13-Dec-2018 but has not made any recoveries yet.
527
- - Bought 4 oxen and 2 ploughs plus chains, barbed wire and polls plus nails for the cral.
528
- - No records were seen except minutes of group meetings.
529
-
530
- The Accounting Officer explained that the affected groups were still within their first year of implementation. The district had engaged the group leaders to have them rescheduled after completion of the first year in November 2019.
531
-
532
- I advised the Accounting Officer to closely monitor the progress of recovery when recoveries become due.
533
-
534
- 8.0 Water for Use and Water For Production
535
-
536
- According to the Budget Framework Paper FY2018/19 for the Ministry of Water and Environment, the water sector targeted to achieve an increased access to safe water and sanitation facilities for rural, urban and water for production uses through increase in access to safe water facilities in rural areas by 72% and increase in functionality of water supply systems in rural areas by 86%. The following observations were made;
537
-
538
- 8.1 Safe Water Coverage and Functionality
539
-
540
- However it was observed that water coverage for sub-counties of Patiko, Bungatira, Paicho and Layibi and Pece Division were below the district average at 64.21%, 65.09%, 56.6%, 71.14%, and 65.46% were below the target respectively as shown below:-
541
-
542
- Subcounty % Safe water coverage
543
- Patiko 64.21
544
- Bungatira 65.09
545
- Paicho 56.6
546
- Layibi 71.14
547
- Pece 65.46
548
-
549
-
550
-
551
-
552
- Low levels of safe water coverage deprive households of their right of access to safe and clean water.
553
-
554
-
555
-
556
-
557
-
558
-
559
-
560
-
561
-
562
-
563
-
564
- Subcounty % Functionality
565
- Awach 66.05
566
- Patiko 71.79
567
- Bungatira 76.15
568
- Unyama 62.31
569
- Paicho 75.07
570
- Palaro 72.54
571
-
572
-
573
-
574
-
575
- Low levels of functionality of water sources deprive households of their right of access to safe and clean water. The Accounting Officer pledged to liaise with the relevant authority to achieve the sector target. I advised the Accounting Officer to ensure that non-functional water sources are rectified and all water sources are maintained in a functional condition.
576
-
577
- 8.3
578
-
579
- Absence of Water User Committees
580
-
581
- Section 50 (1,3) of the Water Act states that A set of individuals or households may form a water user group and collectively plan and manage the point source water supply system in their area.
582
-
583
- However, review of progress reports found that out of 552 functional water sources across the various sub-counties and divisions, only 384 (69.57%) had water user committees and 30.43% without WUCs as shown below.
584
-
585
- Sub-county Functional water sources Water sources with WUCs Waterwithout WUCssources
586
- Awach 65 48 17
587
- Bungatira SC 45 35 10
588
- Paicho SC 63 45 18
589
- Patiko SC 46 30 16
590
- Palaro SC 39 20 19
591
- Unyama SC 65 45 20
592
- Laroo Division 59 38 21
593
- Layibi Division 58 38 20
594
- Pece Division 53 40 13
595
- Bardege Division 59 45 14
596
- TOTAL 552 384 168
597
-
598
-
599
-
600
-
601
-
602
-
603
-
604
-
605
-
606
-
607
-
608
-
609
-
610
-
611
- APPENDICES Appendix I: Implementation of Key Outputs
612
-
613
- Programme Activity Planned Outputs Actual Outputs %age Performance Remarks
614
- UgFIT Construct of Palaro Seed secondary school 1 N/A N/A  It is a multi-year project hence still ongoing  UGX.464,632,599 received for construction,  Advance of UGX.301,700,578 paid to the contractor; and the balance of UGX.162,932,021 was diverted and utilized for the construction of a block of 4 staff houses and a 5 stance pit latrine at Paibona Primary School and Omoti Primary School respectively.  Works had stalled because the Contractor was required to use hard burnt clay bricks during the construction  The contractor was on site but no works were on going.
615
- NUSAF3 Beneficiary groups planned to be supported 184 184 100%  Funding was in accordance with the IPF of UGX.5,207,963,691.
616
- URF Routine Manual Maintenance 452.3kms 367.6kms 81%  A review of the road monitoring reports indicated that 367.6km roads’ network were worked on.
617
- Mechanized Maintenance 19.2 kms 19.2 kms 100%  During inspection, I noted that out of the planned 19.2km roads that the road was gravelled, but a section of the road was slippery as the gravel was not sufficiently compacted.
618
- SAGE Beneficiary Elderly planned to be supported 16,000 1495  There is improvement in the number of beneficiaries up to 1,495 out of the total  Verification of new 119 beneficiaries has just been concluded to fill up the above  A total of 148 alternative recipients have been enrolled to help pick money forof 1,600 required for Gulu. remaining gap. deceased beneficiaries.  At least 3 beneficiaries have confessed of having bought cows, while majority confess of having bought goats and pigs.
619
-
620
-
621
-
622
-
623
- 17
624
-
625
-
626
-
627
-
628
-
629
-
630
-
631
-
632
-
633
-
634
-
635
- Appendix II: Notable Project Achievements at Sub-project level
636
-
637
- No District Sub project name Funds received Salient Achievement SLP
638
- 1 Gulu Dii- cwinyi Self- help Group 6,000,000  Improvement in finance management Improved business skills, produce are supplied in big quantities by other districts up to beneficiaries’ project side. Improvement in weekly saving, there is cumulative saving of 12,000,000 for 6months only compared to the years they had not received the fund.  A member is able to save an average of 50,000 per week.  Adherence to NUSAF core principle and core responsibilities among project beneficiaries.
639
- 2 Gulu Peko mito tic self-help group. 7,200,000  The project beneficiaries are able to save an average of 300,000= per week.  The project have a cumulative saving of 20,000,000= for a period of six months  Environmental safeguard measures being practiced. A total of 1000 pines have been planted. Improved social cohesion support among members. Improved business skills.   Easy access to loans.
640
-
641
-
642
-
643
-
644
- 18
645
-
646
-
647
-
648
-
649
-
650
-
651
-
652
-
653
-
654
-
655
-
656
- Appendix III: Delayed Project Implementation
657
-
658
- Project name Sector Pictures Remarks
659
-
660
- Bolip II Borbayo Tree planting Tree planting
661
-
662
- Bush clearing done
663
-
664
- Tools in the group store
665
-
666
- 19
667
-
668
- Project received UGX 79,850,000 on 15-April-2019. Implementation very slow, Bush clearing was done on 30 acres, lining and pitting still on going. Bought hoes, slashers plus other items and hiring a store.
669
-
670
- Challenges;
671
-
672
- - project management committee (CMPC) were trained late.
673
- - the Bio metric machine took so long.
674
- - attendance has to be entered and finger prints of some people could not be taken as the machine rejected them.
675
- - the 188 beneficiaries did not turn up only 120 appeared to clear the land. hence 90% of the funds are still in the account.
676
-
677
-
678
-
679
-
680
-
681
-
682
-
683
-
684
-
685
-
686
-
687
- Ali- Aboga Community Access Road RoadRoad pass through settlement. Works yet to start.to theProject received UGX.78,887,016 on 11-April-2019. No work had been done yet. Challenges; - Pegging the road had not yet began because of the delay on the part of the Engineer and Municipal Surveyor.--- After pegging, the exact number of graves will be identified and compensation of graves with in the road will commence. Laroo division will handle. In a letter dated 29/6/2019, the LC1 Chairman had written to the Town Clerk Gulu MC requesting for pegging of the road. In a letter dated 31/7/2019, the community facilitator Laroo watershed wrote to office of the Senior Assistant Town Clerk, Gulu requesting for the same. In a letter dated 21/8/2019 the Surveyor Gulu MC, wrote to the LC1 Lukungu sub-ward, Pece Prison Parish informing him to mobilize the community around and along the said road to be around on 27/8/2019 for the pegging exercise.-
688
- Aywee Wamito kwo Dairy farming Dairy farming Project received UGX 18,100,000 on 12-Dec-2018. No
689
- animals had been purchased yet, but a shade for animals
690
- were constructed plus feeding troughs, water tank, and a
691
- sign post.
692
- Challenges;
693
- - Trainings from vet officer as they are very few and
694
- hard to find.
695
- - Dairy animals to be purchased from western
696
- Uganda and with the help of veterinary officers
697
- who are in touch with the process.
698
- - Feeding animals during dry season will be a
699
- problem
700
- - Few veterinary officers in case of need when
701
- animals fall sick.
702
- - Hence about 89% not spent.
703
-
704
-
705
-
706
-
707
- 20
708
-
709
-
710
-
711
-
712
-
713
-
714
-
715
-
716
-
717
-
718
-
719
- Omel B Jing Cwinyi Bee keeping Bee keepingBeehives in treesProject received UGX 17,850,000 on 12-Dec-2018. Purchased bee hives, and various items in the budget for harvesting when the time is due. Challenges; --Purported to have purchased 70 Bee hives, however only 60 found on ground. 10 missing @120,000, hence unaccounted for UGX 1,200,000.
720
- Wii Layibi A revolving Fund SLP Revolving Project received UGX 36,000,000 on 28-Sept-2018 and has
721
- Fund 5 groups.
722
- Challenges;
723
- -Loan period of 3 months is too short especially for people
724
- who do agriculture. 3% for the village revolving fund and 5
725
- % is paid back by members. A communication was made
726
- to OPM.
727
- -Delay in payment by some members with various reasons.
728
- Audit team at the home of one of -Poor leadership among some groups.
729
- the group members.
730
-
731
-
732
-
733
-
734
- Appendix IV: Low Recovery of YLP funds
735
-
736
- S / N Project name Sector Date of disbursement Amount disbursed Repaymen t date Recoverab le amount 5% services fee where applicable Amount Recovered Amount due Remarks
737
- 1 Acut Omer Youth Produce Buying & Selling Project Trade 21-Oct-2015 8,642,800 21-Oct- 2015 3,432,140 432,140 6,500,000 3,432,140 Inactive
738
- 2 Boli Pi Lubanga Twero Youth Produce Buying & Selling Trade 21-Oct-2016 7,500,000 26-Nov- 2016 7,875,000 375,000 2,690,000 7,875,000 Inactive
739
- 3 Boli Pii Cing Maleng Grinding Mill Trade 8-Nov-2018 6,840,000 8-Dec-2018 3,420,000 342,000 850,000 3,420,000 On going
740
-
741
-
742
-
743
-
744
- 21
745
-
746
-
747
-
748
-
749
-
750
-
751
-
752
-
753
-
754
-
755
-
756
- 4 Laban Can Deg Ming Public Address System Trade 26-Jun-2017 11,940,000 3-Aug-2017 12,537,000 597,000 - 12,537,000 On going
757
- 5 Laban Oruu Ki Tam Youth Produce Buying & Selling Trade 19-Oct-2016 7,500,000 21-Nov- 2016 0 - 7,500,000 - completed
758
- 6 Oguru Bed Ki Gen Animal Traction Trade 8-Nov-2018 7,390,000 26-Nov- 2018 7,110,000 369,500 280,000 7,110,000 On going
759
- 7 Oguru Wor Tweroni Youth Produce Buying & Selling Project Trade 1st July 2015 8,621,500 2nd Nov 2015 9,052,575 431,075 2,043,000 9,052,575 Inactive
760
- 8 Pageya Gum Pe Rom Youth Produce Buying & Selling Trade 13-Mar-2017 7,500,000 17.April.201 7 7,875,000 375,000 2,500,000 7,875,000 Inactive
761
- 9 Pageya Waryemo Can Produce Buying & Selling Group Trade 16-Jul-2015 7,332,000 14-Oct- 2015 7,698,600 366,600 1,240,000 7,698,600 On going
762
- 10 Paromo Can Rwode Pe Youth Ox- Cultivation Agricult ure 8-Sep-2016 9,670,000 10-May- 2017 10,153,500 483,500 - 10,153,500 On going
763
- 11 Paromo Jale Ber Youth Piggery Trade 26-Aug-2016 8,714,000 12-Apr- 2017 9,149,700 435,700 - 9,149,700 On going
764
- 12 Paromo Youth For Development Piggery Trade 26-Sep-2016 8,850,000 28-04-2017 8,592,500 442,500 700,000 8,592,500 On going
765
- 13 Payuta Straight Talk Youth Group Trade 11-Dec-2015 8,050,000 19.12.2015 2,131,000 106,550 5,919,000 2,131,000 On going
766
- 14 Payuta Tam Pi Wan Youth Piggery Project Trade 26-Sep-2016 8,290,000 26.12.2016 4,504,500 214,500 4,000,000 4,504,500 On going
767
- 15 Tuku Visible Youth Piggery Trade 13-Mar-2017 8,850,000 20.April.201 7 3,255,000 155,000 5,700,000 3,255,000 On going
768
- 16 Paminano Produce Buying & Selling Trade 23-Sep-2015 8,020,000 30-03- 2016 1,987,314 94,625 6,127,500 1,987,314 On going
769
- 17 Cet Kana Youth Piggery Project Trade 12-Jun-2015 8,676,000 20.10.2015 8,101,800 385,800 960,000 8,101,800 On going
770
- 18 Kulukeno Produce Buying & Selling Trade 19-Nov-2015 5,000,000 1.9.2015 3,150,000 150,000 2,000,000 3,150,000 On going
771
- 19 Lagwiny Youth Trade 19-Nov-2015 7,635,000 19.02.2016 7,281,750 On going
772
-
773
-
774
-
775
-
776
- 22
777
-
778
-
779
-
780
-
781
-
782
-
783
-
784
-
785
-
786
-
787
-
788
- Piggery Project 346,750 700,000 7,281,750
789
- 20 Lawiya Dul Youth Masonry & Brick Laying Project Trade 27-Oct-2015 6,445,000 4.10.2015 4,824,550 229,550 1,850,000 4,824,550 On going
790
- 21 Layik Youth Piggery Trade 26-Sep-2016 9,320,000 26.12.2016 8,213,000 391,000 1,500,000 8,213,000 On going
791
- 22 Lukodi Youth Produce Buying & Selling Project Trade 23-Jul-2015 6,199,000 30-08-2015 5,143,950 244,950 1,300,000 5,143,950 On going
792
- 23 Obiya Youth Piggery Trade 21-Oct-2016 9,600,000 24.04.2017 6,059,550 288,550 3,829,000 6,059,550 Inactive
793
- 24 Oguru Produce Buying & Selling Trade 9-Jan-2016 7,054,200 2.11.2016 2,440,410 116,210 4,730,000 2,440,410 On going
794
- 25 Oguru Ulonygiu Produce Buying and Selling Trade 26-Jun-2017 7,100,000 3.8.2017 7,455,000 355,000 - 7,455,000 Inactive
795
- 26 Oturuloya Produce Buying & Selling 7-Nov-2016 7,000,000 7.12.2016 7,350,000 350,000 - 7,350,000 inactive
796
- 27 Owak Youth Piggery Project Trade 23-Jun-2015 6,500,000 31.10.2015 6,825,000 325,000 - 6,825,000 On going
797
- 29 Twon Okun Ribbe Ber Youth Farmers Agricult ure 18-Apr-2019 7,795,000 18.July.201 9 8,184,750 389,750 - 8,184,750 On going
798
- 30 Acutomer Par Pi Anyim Ox-Cultivation Agricult ure 23-Apr-2018 7,505,000 03.10.2017 7,880,250 375,250 - 7,880,250 On going
799
- 31 Ajani Atek Tera Youth Grinding Mills Trade 23-Mar-2017 6,855,000 23-Apr-17 5,801,250 276,250 1,330,000 5,801,250 On going
800
- 32 Ajanyi Yele Ber Youth Produce Buying & Selling Trade 23-Mar-2017 6,500,000 23.Jun.2017 5,688,900 270,900 1,082,000 5,688,900 On going
801
- 33 Ajanyi Mak Tic Youth Produce Buying & Selling Trade 23-Mar-2017 6,500,000 23.Jun.2017 5,040,000 240,000 1,700,000 5,040,000 On going
802
- 34 Lego Jami Youth GoatRearing GroupBoke Ber Wa Ool Ki Trade 23-Jul-2015 8,145,000 30-Oct-15 5,870,760 279,560 2,553,800 5,870,760 On going
803
-
804
-
805
-
806
-
807
- 23
808
-
809
-
810
-
811
-
812
-
813
-
814
-
815
-
816
-
817
-
818
-
819
- 35 Bura Ribe Aye Teko Youth Ox-Cultivation Agricult ure 23-Mar-2017 10,362,000 24.8.2017 8,780,100 418,100 2,000,000 8,780,100 On going
820
- 36 Corner Ward Kacel Watwero Youth Produce Buying & Selling Trade 13-Mar-2017 7,000,000 24.April.201 7 4,935,000 235,000 2,300,000 4,935,000 On going
821
- 37 Corner Ward Ribbe Aye Teko Piggery Youth Group Trade 23-Mar-2017 8,000,000 13.Jun.2017 4,035,067 192,017 4,159,650 4,035,067 On going
822
- 38 Lakwela Laping Oloyo Ox-Cultivation Agricult ure 21-Mar-2018 7,220,000 21.07.2018 7,056,000 336,000 500,000 7,056,000 On going
823
- 39 Omel A Lubanga Peyero Ox-Cultivation Agricult ure 26-Jun-2017 7,580,000 03.10.2017 6,909,000 329,000 1,000,000 6,909,000 On going
824
- 40 Omel B Youth Ox- Cultivation Agricult ure 26-Jun-2016 8,770,000 26.Sept.201 6 7,588,174 361,341 1,543,167 7,588,174 On going
825
- 41 Te-Olam Mak Tic Piggery Project Trade 26.Jun.2016 7,245,000 26.Sept.201 6 7,245,000 - 7,630,000 7,245,000 completed
826
- 42 Agoro Opar Pi Bulu Piggery Youth Group Trade 12-Jun-2015 8,877,000 28.10.2015 9,320,850 443,850 - 9,320,850 On going
827
- 43 Awalaboro Ox- Cultivation Agricult ure 21-Mar-2018 7,645,000 21.07.2018 8,027,250 382,250 - 8,027,250 On going
828
- 44 Kiteny Tam Pi Diki Youth Piggery Project Trade 12-Jun-2015 8,425,000 13.2.2016 8,846,250 421,250 - 8,846,250 On going
829
- 45 Lugore Piggery Youth Group Trade 12-Jun-2015 7,527,000 15-12-2015 6,853,350 326,350 1,000,000 6,853,350 On going
830
- 46 Mede Centre Waloko Kwo Ox- Cultivation Agricult ure 26-Jun-2017 8,730,000 03.Oct.2017 9,166,500 436,500 - 9,166,500 On going
831
- 47 Ongedo Wang Ma Waculo Produce Buying Trade 26-Jun-2017 7,100,000 26.July.201 7 7,035,000 335,000 400,000 7,035,000 Inactive
832
- 48 Oroko Wapwoyo Lutela Produce Buying & Selling Group Trade 12-Jun-2015 8,120,000 28.Sept.201 5 1,386,000 66,000 6,800,000 1,386,000 Inactive
833
- 49 Patwol Can Kaya Ox- Cultivation Agricult ure 3-Jul-2018 7,345,000 26.Oct.2018 7,712,250 367,250 - 7,712,250 On going
834
-
835
-
836
-
837
-
838
- 24
839
-
840
-
841
-
842
-
843
-
844
-
845
-
846
-
847
-
848
-
849
-
850
- 50 Pok Ogali Youth Ox- Cultivation Project Agricult ure 1-May-2016 6,758,000 30.Oct.2015 7,095,900 337,900 - 7,095,900 Inactive
851
- 51 Adak Alliance Piggery Project Trade 7-Jul-2015 9,215,000 28.Nov.201 5 9,675,750 460,750 - 9,675,750 Inactive
852
- 52 Adak Tii Pi Anyim Youth Ox-Cultivation Group Agricult ure 23-Mar-2017 9,010,000 23.Jun.2017 9,460,500 450,500 - 9,460,500 On going
853
- 53 Angany Cam Kwoki Youth Produce Traders Trade 19-Nov-2018 7,100,000 26.Dec.201 8 6,450,000 650,000 6,450,000 On going
854
- 54 Anyadwe Youth Produce Traders Trade 23-Nov-2018 7,100,000 23.Nov.201 8 3,549,800 3,550,200 3,549,800 On going
855
- 55 Awoonyim Wang Kalo Ox-Cultivation Project Agricult ure 10-Aug-2015 8,870,000 15.May.201 6 9,103,500 433,500 200,000 9,103,500 Inactive
856
- 56 Pajaa Kacel Watek Youth Ox-Cultivation Agricult ure 18-Apr-2019 8,410,000 18.July.201 9 8,410,000 - 8,410,000 On going
857
- 57 Patalira Kica Ber Piggery Project 23-Sep-2015 7,464,000 23.Dec.201 5 1,589,700 373,200 5,950,000 1,589,700 On going
858
- 58 Agung Atem Lwak Youth Ox-Cultivation Project Agricult ure 12-Jun-2015 7,691,000 30.Dec.201 5 1,828,050 87,050 5,950,000 1,828,050 On going
859
- 59 Akonyi Bedo Warocu Kwo Youth Produce Buying & Selling Trade 21-Oct-2016 7,720,000 19-Nov- 2016 7,161,000 341,000 900,000 7,161,000 On going
860
- 60 Coopil Mic Pa Lacwec Youth Ox-Traction Trade 19-Nov-2018 8,400,000 26.Nov.201 8 8400000 - - 8,400,000 On going
861
- 61 Youth Piggery ProjectLapeta Vision Ahead Trade 12-Jun-2015 5,034,000 30-Dec- 2015 5,285,700 251,700 - 5,285,700 On going
862
- 62 Loyoboo A Utem Gum Youth Piggery Project Agricult ure 12-Jun-2015 6,238,000 30.Jan.2016 6,182,400 294,400 350,000 6,182,400 On going
863
- 63 Loyoboo Waribbe Youth Ox-Cultivation Agricult ure 4-Jul-2018 8,105,000 04.Oct.2018 5,000,000 - - 5,000,000 On going
864
- 64 Youth PiggeryOding Ribbe Ber 24-Oct-2016 8,800,000 9-May-17 9,240,000 440,000 - 9,240,000 On going
865
-
866
-
867
-
868
-
869
- 25
870
-
871
-
872
-
873
-
874
-
875
-
876
-
877
-
878
-
879
-
880
-
881
- 65 Oguru Tic Ryemo Can Youth Piggery Agricult ure 19-Nov-2018 7,900,000 26.Nov.201 8 1,975,000 - - 1,975,000 On going
882
- 66 Oguru Wang Nen Youth Poultry Keeping Poutry 16-Nov-2016 7,214,000 22-Dec- 2016 1,551,006 73,857 5,736,851 1,551,006 On going
883
- 67 Unyama A Diro Pe Rom Youth Poultry Poutry 19-Nov-2018 8,580,000 26.Dec.201 8 4,290,000 - 750,000 4,290,000 On going
884
- 68 Unyama B Wilobo Wire Ox-Cultivation Project Agricult ure 12-Jun-2015 4,700,000 30.Sept.201 5 3,202,500 152,500 1,650,000 3,202,500 On going
885
- 69 Angany Youth Animal Traction II Agricult ure 18-Apr-2019 7,680,000 12.Dec.201 9 7,680,000 On going
886
- 70 Anyomotwon Youth Animal Traction Agricult ure 19-Mar-2019 9,400,000 04.August.2 019 9,400,000 On going
887
- 71 Lakwela Youth Animal Traction II Agricult ure 18-Apr-2019 7,680,000 12.Nov.201 9 7,680,000 On going
888
- 72 Loyoboo Youth Animal Traction II Agricult ure 18-Apr-2019 9,400,000 4.August.20 19 9,400,000 On going
889
- 73 Omel B Youth Animal Traction II Agricult ure 18-Apr-2019 9,400,000 12.AUGUST. 2019 9,400,000 On going
890
- 74 Omel B Youth Animal Traction III Agricult ure 19-Mar-2019 9,400,000 4.August.20 19 9,400,000 On going
891
- 75 Patalira Youth Animal Traction Agricult ure 19-Mar-2019 9,400,000 4.August.20 19 9,400,000 On going
892
- 76 Unyama B Youth Poultry II Agricult ure 19-Mar-2019 7,060,000 12.May .2019 9,400,000 On going
893
- 77 Layik Youth Vegetables Growing II Agricult ure 19-Mar-2019 6,000,000 04.May.201 9 340,000 5,660,000 On going
894
- 78 Anyadwe Youth Carpentry II Works 19-Mar-2019 9,150,000 4-May-19 1,200,000 7,950,000 On going
895
- 79 Twonokun Youth Grinding Mill Trade 18-Apr-2019 8,800,000 12.05.2019 300,000 7,700,000 On going
896
- 80 Agoro Youth Produce Traders Trade 18-Apr-2019 8,000,000 4.May.2019 8,800,000 On going
897
- 81 Kinene Youth Produce Traders Trade 19-Mar-2019 8,000,000 04.May.201 9 8,000,000 On going
898
- 82 Kiteny Youth Produce Trade 19-Mar-2019 04.April.201 On going
899
-
900
-
901
-
902
-
903
- 26
904
-
905
-
906
-
907
-
908
-
909
-
910
-
911
-
912
-
913
-
914
-
915
- Traders II 8,000,000 9 200,000 7,800,000
916
- 83 Kiteny Youth Produce Traders III Trade 18-Apr-2019 8,000,000 12.May .2019 8,000,000 On going
917
- 84 Laban Youth Produce Traders III Trade 18-Apr-2019 8,000,000 12.May.201 9 315,000 7,685,000 On going
918
- 85 Lugore Youth Produce Traders Trade 19-Mar-2019 8,000,000 04.May.201 9 8,000,000 On going
919
- 86 Pageya Bar Youth Produce Traders Trade 19-Mar-2019 8,000,000 04.May.201 9 700,000 7,300,000 On going
920
- 87 Unyama A Youth Produce Traders Trade 19-Mar-/2019 8,000,000 04.May.201 9 8,000,000 On going
921
-
922
-
923
-
924
-
925
- 27
926
-
927
-
928
-
929
-
930
-
931
-
932
-
933
-
934
-
935
-
936
-
937
- Appendix V: Non Existent Groups
938
-
939
- Project name Sector Date of disbursem ent Amount disbursed Recoverable amount 5% services fee where applicabl e Amount Recove red Amount due Remarks
940
- Paromo Jale Ber Youth Piggery Trade 26-Aug-2016 8,714,000 8,714,000 435700 - 9,149,700.00 not existing
941
- Oguru Ulonygiu Produce Buying and Selling Trade 26-Jun-2017 7,100,000 7,100,000 355000 - 7,455,000.00 Inactive
942
- Oturuloya Produce Buying & Selling 7-Nov-2016 7,000,000 7,000,000 350000 - 7,350,000.00 not existing
943
- Owak Youth Piggery Project Trade 23-Jun-2015 6,500,000 6,500,000 325000 - 6,825,000.00 not existing
944
- Acutomer Par Pi Anyim Ox- Cultivation Agricultu re 23-Apr-2018 7,505,000 7,505,000 375250 - 7,880,250.00 not existing
945
- Awalaboro Ox-Cultivation Agricultu re 21-Mar-2018 7,645,000 7,645,000 382250 - 8,027,250.00 disappeared
946
- Kiteny Tam Pi Diki Youth Piggery Project Trade 12-Jun-2015 8,425,000 4,500,000 421250 - 8,846,250.00 not existing
947
- Patwol Can Kaya Ox- Cultivation Agricultu re 3-Jul-2018 7,345,000 7344900 367250 - 7,712,250.00 not existing
948
- Pok Ogali Youth Ox- Cultivation Project Agricultu re 1-May-2016 6,758,000 6758000 337900 - 7,095,900.00 not existing
949
- Adak Alliance Piggery Project Trade 7-Jul-2015 9,215,000 9215000 460750 - 9,675,750.00 not existing
950
- Obiya Youth Piggery Trade 21-Oct- 2016 9,600,0 00 9,600,000 480,000 6,251,000 inactive
951
-
952
-
953
-
954
-
955
-
956
-
957
-
958
-
959
-
960
-
961
-
962
-
963
-
964
-
965
- Appendix VI: Non-Compliance with Repayment schedules- UWEP
966
-
967
- Sub County Name Of Women Group Sector Amount Approved By Dec Amount Disbursed By- Tsu- Mglsd Repaymen t Date Recoverable Amount Amount Recovered 5% Surcharge Balance
968
- Unyama Loyo Boo Akem Kwene Women Group Agriculture 8,086,000 8,086,000 14/04/2019 2,021,700 - - 8,086,000
969
- Awach Kica Ber Women Group Agriculture 6,500,000 5,710,000 14/02/2019 2,379,500 937,000 - 4,773,000
970
- Awach Yub Kiti Women Group Agriculture 8,068,000 6,880,000 14/04/2019 2,017,500 1,600,000 - 6,880,000
971
- Awach Dii Cwinyi Women Group Agriculture 5,400,000 5,400,000 14/02/2019 2,250,000 900,000 - 4,500,000
972
- Unyama Kinene Cing Ma Konyi Agriculture 7,888,000 7,888,000 14/3/2019 2,630,000 1,972,500 - 5,915,500
973
- Bungatira Mon Yele Ayela Agriculture 6,133,000 6,133,000 14/4/2019 1,533,300 - - 6,133,000
974
- Bungatira Nyeko Rac Women Group Agriculture 6,133,000 6,133,000 14/04/2019 1,533,300 - - 6,133,000
975
- Bungatira Mar ber Women Group Wholesale and Retail Trade 6,133,000 6,133,000 14/02/2019 2,556,000 1,575,000 - 4,558,000
976
- Bungatira Loyo Lega Women Group Agriculture 6,133,000 6,133,000 14/02/2019 2,044,800 2,556,000 - 4,088,200
977
- Bungatira Tii Ki Lweti Women Group Wholesale and Retail Trade 6,133,000 6,133,000 14/02/2019 1,533,300 - - 6,133,000
978
- Bungatira Can Pe Two Women Group Agriculture 8,643,000 7,000,000 14/4/2019 2,160,900 - - 7,000,000
979
-
980
-
981
-
982
-
983
- 29
984
-
985
-
986
-
987
-
988
-
989
-
990
-
991
-
992
-
993
-
994
-
995
- Bungatira Good Faith Women Group Wholesale and Retail Trade 8,643,000 6,500,000 8/6/2019 200,000 1,200,000 - 5,300,000
996
- Paicho Te-Olam Gang ber Women Group Agriculture 6,680,000 6,680,000 14/2/2019 2,783,500 558,000 - 6,122,000
997
- Bungatira Rwot Omiyo Women Group Wholesale and Retail Trade 6,133,000 6,133,000 14/2/2019 2,557,500 - - 6,133,000
998
- Bungatira Tidi Ma Myero Women Group Wholesale and Retail Trade 6,680,000 6,680,000 14/02/2019 2,783,500 - - 6,680,000
999
- Bungatira Gene Ber Women Group Agriculture 6,133,000 6,133,000 14//04/2019 1,533,300 - - 6,133,000
1000
- Palaro Lugore Tute Ki Cingi Agriculture 6,680,000 6,680,000 14/02/2019 2,785,000 1,500,000 - 5,180,000
1001
- Palaro Kiteny Rwot Omiya Women Group Industry 6,680,000 6,680,000 14/o2/2019 2,785,000 999,400 - 5,680,600
1002
- Unyama Loyo Boo Ket Can Itic Wholesale and Retail Trade 8,086,000 8,086,000 14/03/2019 2,695,600 - - 8,086,000
1003
- Paicho Dwere Kec Kakare Agriculture 7,788,000 7,288,000 14/04/2019 1,821,900 2,035,000 - 5,253,000
1004
- Unyama Loyoboo kica ber Kidere Industry 5,300,000 5,300,000 14/01/2019 2,650,200 1,464,000 - 3,836,000
1005
- Paicho Anyomotwwon Pit Odong Ki Mon Wholesale and Retail Trade 8,003,000 8,003,000 14/03/2019 2,668,000 1,971,100 - 6,031,900
1006
- Awach Waribu Cing wa Wholesale and Retail Trade 6,680,000 6,680,000 14/01/2019 3,340,200 1,279,900 - 5,400,100
1007
- Awach Min Latin Women's Group Whole Sale and Retail Trade 6,986,000 6,776,000 29-10-2017 6,776,000 1,464,000 264,600 5,576,600
1008
- Awach Lagada Yil ki Wade Women's Group Entertainment & Recreation 8,985,000 8,780,000 11/10/2017 8,780,000 4,997,000 264,650 5,557,650
1009
-
1010
-
1011
-
1012
-
1013
- 30
1014
-
1015
-
1016
-
1017
-
1018
-
1019
-
1020
-
1021
-
1022
-
1023
-
1024
-
1025
- Awach Pit odong ki Mon Women's Group Trade & Whole sale 6,680,000 5,650,000 10/4/2017 5,650,000 2,036,900 180,655 4,229,255
1026
- Awach Atek Ki Lwak Women's Group Whole Sale and Retail Trade 6,680,000 5,201,500 4/10/2017 5,201,500 2,669,800 160,005 4,492,705
1027
- Awach Lacede Women's Group Agriculture 8,068,000 7,440,000 3/3/2018 7,440,000 2,080,000 307,000 6,513,500
1028
- Awach Wot Tek Women's Group Agriculture 8,068,000 6,880,000 1/2/2018 6,880,000 4,588,000 171,950 5,331,450
1029
- Bungatira Lacan Pe Kun Women's Group Whole Sale and Retail Trade 6,100,000 5,200,000 4/10/2017 5,200,000 2,601,000 154,980 3,718,890
1030
- Bungatira Adeg Anii Fish Mongers Women's Group Trade & Whole sale 6,500,000 5,310,000 4/10/2017 5,310,000 2,210,400 177,090 3,718,890
1031
- Can Deg Mone Women's Group Whole Sale and Retail Trade 6,680,000 5,480,000 7/10/2017 5,480,000 896,700 251,165 5,274,465
1032
- Bungatira Opit Lutino Women's Group Agriculture 6,133,000 5,950,000 10/1/2018 5,950,000 1,670,800 213,960 4,493,160
1033
- Bungatira Tene Ki Lawoti Women's Group Agriculture 6,133,000 5,633,000 4/1/2018 5,633,000 800,000 241,650 5,074,650
1034
- Bungatira Mar Latini 'A' Women's Group Agriculture 6,133,000 6,133,000 10/1/2018 6,133,000 1,022,200 255,540 5,366,340
1035
- Bungatira Rwot Twero Women's Group Whole Sale and Retail Trade 6,680,000 5,048,000 4/10/2017 5,048,000 841,400 210,330 4,416,930
1036
- Bungatira Kabake Women Group Agriculture 6,133,000 6,133,000 4/1/2018 6,133,000 5,172,800 102,210 4,416,930
1037
- Bungatira Rwot Oyee Women's Group Agriculture 6,680,000 6,133,000 2/2/2018 6,133,000 5,028,000 78,000 4,437,000
1038
-
1039
-
1040
-
1041
-
1042
- Bungatira
1043
-
1044
- 31
1045
-
1046
-
1047
-
1048
-
1049
-
1050
-
1051
-
1052
-
1053
-
1054
-
1055
-
1056
- Paicho Lakwela Waribu Cingwa Women's Group Whole Sale and Retail Trade 6,680,000 6,570,000 4/10/2017 6,570,000 6,570,500 - 2,736,300
1057
- Paicho Te Olam Lubanga Mamiyo Women's Group Whole Sale and Retail Trade 6,680,000 6,339,000 4/10/2017 6,339,000 6,339,000 - 3,171,000
1058
- Paicho Corner Mon Bunyu Women's Group Whole Sale and Retail Trade 6,680,000 5,781,000 4/10/2017 5,781,000 2,846,200 146,740 3,707,940
1059
- Paicho Lalworo Tem Gumi Women Group Whole Sale and Retail Trade 6,760,000 6,700,000 4/10/2017 6,700,000 6,700,000 - 3,820,000
1060
- Palaro Mede Centre Mon Aye Guti Women Group Agriculture 7,350,000 7,350,000 9/3/2018 7,350,000 3,000,000 146,740 5,932,740
1061
- Palaro Awal Aboro Opoo Lacen Women Group Agriculture 8,086,000 6,805,000 1/12/2017 6,805,000 314,000 324,550 7,129,550
1062
- Palaro Poko Ogali Odokomit Women's Group Agriculture 7,086,000 6,880,000 2/1/2018 6,880,000 2,630,000 212,500 4,462,500
1063
- Palaro Oroko Waneno Anyim Women Group Whole Sale and Retail Trade 6,680,000 5,905,000 4/10/2017 5,905,000 2,500,000 170,250 3,405,000
1064
- Unyama Unyama B Pit Lit Women Group Agriculture 8,643,000 7,755,000 4/10/2017 7,755,000 4,334,200 171,040 5,232,040
1065
- Unyama Unyama B Can Kelo Diro Women Group Whole Sale and Retail Trade 6,696,000 5,668,000 4/10/2017 5,668,000 3,234,500 121,675 5,314,175
1066
- Unyama Agung Lubanga Pe Wany Agriculture 8,086,000 7,080,000 2/1/2018 7,080,000 2,660,000 232,050 5,542,050
1067
-
1068
-
1069
-
1070
-
1071
- 32
1072
-
1073
-
1074
-
1075
-
1076
-
1077
-
1078
-
1079
-
1080
-
1081
-
1082
-
1083
- Unyama Lapeta Lubanga Ma Miyo Women's Group Agriculture 8,086,000 7,080,000 22/2//2018 7,080,000 7,168,500 88,500 5,398,500
1084
- Unyama Coopil Ribe Ber Women Group Agriculture 8,643,000 7,755,000 6/12/2017 7,755,000 996,000 337,950 7,500,950
1085
- Total 357,531,000 331,887,500 230,679,500 107,919,800 4,985,780 270,006,460
1086
-
1087
-
1088
-
1089
-
1090
- 33
1091
-
1092
-
1093
-
1094
-
1095
-
1096
-
1097
-
1098
-
1099
-
1100
-
1101
-
1102
-
1103
-
1104
-
1105
-
1106
-
1107
-
1108
-
1109
-
1110
-
1111
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
reports/Gulu DLG Report of Auditor General 2020/Gulu DLG Report of Auditor General 2020.chunks.json DELETED
The diff for this file is too large to render. See raw diff
 
reports/Gulu DLG Report of Auditor General 2020/Gulu DLG Report of Auditor General 2020.md DELETED
@@ -1,1170 +0,0 @@
1
- ### OFFICE OF THE AUDITOR GENERAL THE REPUBLIC OF UGANDA
2
-
3
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10050.jpg)
4
-
5
- ### REPORT OF THE AUDITOR GENERAL
6
-
7
- **ON THE FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT FOR THE YEAR ENDED 30 TH JUNE, 2020**
8
-
9
- ---
10
-
11
- ### TABLE OF CONTENTS
12
-
13
- ### Page
14
-
15
- Opinion - 1
16
- Basis for Opinion - 1
17
- Key Audit Matters - 1
18
- 1.0 Implementation of the approved budget - 1
19
- 2.0 Management of Covid-19 interventions - 8
20
- Emphasis of Matter - 11
21
- 3.0 Effects of the creation of Gulu City on the Assets and liabilities of Gulu District Local
22
- Government - 11
23
- 4.0 Accumulated Payables - 11
24
- Other Information - 11
25
- Management’s Responsibility for the Financial Statements - 12
26
- Auditor’s Responsibility - 12
27
- Other Reporting Responsibilities - 13
28
- Report on the Audit of Compliance with Legislation - 13
29
- 5.0 Management of Government-Vehicles (Fleet Management) - 13
30
- Status of Basic Medical Equipment in HCIV 17 6.0
31
- Inadequate medical equipment at Awach Health Centre IV 17 7.0
32
- 8.0 Data on Mothers Delivery - 17
33
- 9.0 Follow up on UGIFT projects - 18
34
- 10.0 Under staffing - 20
35
- Appendix I: Evaluation of the achievement of planned outputs - 22
36
- Appendix II(a): Fleet Management - 26
37
- Appendix III: Procurements- COVID-19 - 35
38
- Appendix IV: Schedule of Items Received Under Covid 19 - 36
39
- Appendix V: Under Staffing - 38
40
-
41
- ---
42
-
43
- ### LIST OF ACRONYMS
44
-
45
- | **Acronym** | **Meaning** |
46
- |---|---|
47
- | BOU | Bank of Uganda |
48
- | CoC | Certificates of Compliance |
49
- | CWC | Community Watershed Committee |
50
- | GoU | Government of Uganda |
51
- | IESBA | International Ethics Standards Board for Accountants |
52
- | IFMS | Integrated Financial Management System |
53
- | INTOSAI | International Organisation of Supreme Audit Institutions |
54
- | ISSAIs | International Standards of Supreme Audit Institutions |
55
- | LGFAM | Local Government Financial and Accounting Manual |
56
- | MoFPED | Ministry of Finance, Planning and Economic Development |
57
- | NDP | National Development Plan |
58
- | NPA | National Planning Authority |
59
- | NUSAF | Northern Uganda Social Action Fund |
60
- | PBS | Performance Budgeting System |
61
- | PFMA | Public Finance Management Act |
62
- | TSSA | Treasury Sub Single Account |
63
- | TSA | Treasury Single Account |
64
- | UgIFT | Uganda Intergovernmental Fiscal Transfers Program for Results |
65
- | UGX | Uganda Shillings |
66
- | URF | Uganda Road Fund |
67
- | UPE | Universal Primary Education |
68
- | USE | Universal Secondary Education |
69
- | MoLG | Ministry of Local Government |
70
-
71
-
72
- ---
73
-
74
- ### REPORT OF THE AUDITOR GENERAL
75
-
76
- **ON THE FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT FOR THE YEAR ENDED 30 TH JUNE, 2020**
77
-
78
- **THE RT. HON. SPEAKER OF PARLIAMENT**
79
-
80
- ### Opinion
81
-
82
- I have audited the accompanying Financial Statements of Gulu District Local Government,
83
-
84
- ## which comprise the Statement of Financial Position as of 30 th June 2020, the Statement of
85
-
86
- Financial Performance, Statement of Changes in Equity, Statement of Cash Flows, together with other accompanying statements for the year then ended, and notes to the financial statements, including a summary of significant accounting policies.
87
-
88
- #### In my opinion, the Financial Statements of Gulu District Local Government for the year ended 30 th June 2020 are prepared, in all material respects, in accordance with section 51 of the Public Finance Management Act (PFMA), 2015 as amended and the Financial Reporting
89
-
90
- Guide, 2018.
91
-
92
- ### Basis for Opinion
93
-
94
- I conducted my audit in accordance with International Standards of Supreme Audit Institutions (ISSAIs). My responsibilities under those standards are further described in the
95
-
96
- #### Auditor’s Responsibilities for the audit of the Financial Statements section of my report. I am independent of the District in accordance with the Constitution of the Republic of Uganda (1995) as amended, the National Audit Act, 2008, the International Organisation of Supreme
97
-
98
- Audit Institutions (INTOSAI) Code of Ethics, the International Ethics Standards Board for
99
-
100
- #### Accountants’ Code of Ethics for Professional Accountants (IESBA Code) and other independence requirements applicable to performing audits of Financial Statements in Uganda. I have fulfilled my ethical responsibilities in accordance with the other requirements
101
-
102
- and the IESBA Code. I believe that the audit evidence I have obtained is sufficient and appropriate to provide a basis for my opinion.
103
-
104
- ### Key Audit Matters
105
-
106
- #### Key audit matters are those matters that, in my professional judgment, were of most significance in my audit of the Financial Statements of the current period. These matters
107
-
108
- were addressed in the context of my audit of the Financial Statements as a whole, and in
109
-
110
- ---
111
-
112
- partial and non-implementation of outputs, diversion of funds and challenges in budget monitoring and reporting of performance.
113
-
114
- ## A review of district’s approved work plans and budgets revealed that Gulu District had
115
-
116
- an approved budget of UGX.42.4Bn, out of which UGX.30.1Bn was warranted/ availed by the end of the financial year. The total expenditure for the year was 27.3Bn out of
117
-
118
- ## which UGX.18.04Bn 1 was spent on non-service delivery activities, such as employee
119
-
120
- costs and transfers to other units (sub-counties, schools and health centres), implying
121
-
122
- ## that only UGX.9.3Bn was available for implementation of service delivery outputs.
123
-
124
- #### The UGX.9.3Bn that remained was applied for the implementation of one hundred and seventy three (173) outputs from which I sampled eleven (11) outputs with a budget of UGX.2.99Bn and expenditure of UGX.1.72Bn representing 18.5% of the total
125
-
126
- resources spent on implementation of activities as shown in the table below.
127
-
128
- | Monetary Value (UGX.) Bn |<|<|<| Number of outputs |<|<|
129
- |---|---|---|---|---|---|---|
130
- | **Total Exp** | **Amount spent** **on** direct service delivery** | **Total exp. audited** | **% audited** | **Number of direct service delivery outputs** | **No.** of outputs sampled for audit** | **%outputs audited** |
131
- | 27.3 | 9.3 | 1.72 | 18.5 | 173 | 11 | 6.4 |
132
-
133
-
134
- The Key outputs/ activities implemented by the entity during the year were;
135
-
136
- | **SN** | **Key Out-puts/Activities** | **Amount Spent UGX** | **% of amount spent to total of expenditure for** **key** items implemented.** |
137
- |---|---|---|---|
138
- | 1 | Classroom construction and rehabilitation |||
139
- | 1a | Construction of 1 block of 2 classrooms at Panykworo | 75,000,000 | 4 |
140
- | 1b | Construction of 1 block of 4 units teachers\` house | 94,616,000 | 6 |
141
- | 1c | Partial construction of 1 block of 2 classrooms at Kitenywalo PS | 31,484,000 | 2 |
142
- | 2 | Partial construction of standard OPD at Lapeta HC II phase 1 | 64,421,000 | 4 |
143
- | 3 | Construction of 1 block of 4 stances drainable latrine at Patiko HC III | 18,419,000 | 1 |
144
- | 4 | Road construction and rehabilitation || 0 |
145
- | 4a | Rehabilitation of 3.3 km Gulu PTC- Kidere road | 5,152,000 | 0.3 |
146
- | 4b | Low cost seal of Laroo- Pageya road | 75,000,000 | 4 |
147
- | 5 | Maintenance of District roads || 0 |
148
- | 5a | Routine manual maintenance | 89,652,000 | 5 |
149
- | 5b | Routine mechanised maintenance | 167,569,295 | 10 |
150
- | 5c | Emergency works on Wii- Apaya stream | 54,239,365 | 3 |
151
- | 6 | Mechanical imprest | 57,164,000 | 3 |
152
- | 7 | Construction of 15 deep boreholes | 286,463,440 | 17 |
153
- | 8 | Supply of hand pump spare parts for borehole rehabilitation | 160,729,700 | 9 |
154
- | 9 | Design of pipe water system and sanitation facilities at Cwero Growth Centre | 50,950,000 | 3 |
155
- | 10 | Palaro Seed Secondary school construction. | 481,690,000 | 28 |
156
- | 11 | Renovation of store | 7,590,000 | 0.4 |
157
- | **Total** |<| **1,720,139,800** | **100** |
158
-
159
-
160
- ---
161
-
162
- The outbreak of the Covid Pandemic affected the implementation of the 2019/20 budget for a number of entities especially the implementation of activities in the last half of the financial year. A number of activities were not implemented as a result of budget cuts and the lockdown measures instituted to control the spread of the pandemic.
163
-
164
- | **No** | **Observation** |<|<|<|<|<| **Recommendation** |
165
- |---|---|---|---|---|---|---|---|
166
- | **1.1** | **Implementation of the strategic plan** Government has been implementing the NDP II, which ended at the end of financial year 2019/2020. In line with the NDP, the District had its strategic plan approved for the period 2015-2020; this plan set out both the long term and short term targets to be achieved. current audit year was the 5 th year /the last year of implementation of the strategic plan, and it is anticipated that all the projected targets would have been accomplished. noted that at the time of audit (June 2019/20), out of 6 strategic targets, the district had fully achieved two (2) targets and partially attained four (4) targets, as shown in the table below; **extent of achievement of 2015/16-2019/2020 strategic plan by** **2019/2020** **No Level of performance** **by** **of** 2019/2020** **the** end** **No of strategic goals/ objectives** **total of** **%** of number strategic objectives** 1 2 3 2 4 0 **6** 33.3 66.7 0 **100** Fully achieved Partially achieved Not achieved **Total** **Source: OAG analysis** The targets that were partially achieved were 1.Completion of Palaro Seed Secondary School. 2\. Maintenance of district roads. 3\. Emergency works Wii-Apaya Stream 4\. Manual maintenance of 378.3km of District Roads The Accounting Officer attributed the underperformance to general reduction in the development sector grants under Education, Health and Water. I The **The** |<|<|<|<|<| advised the Accounting Officer to engage MoFPED and have the unimplemented activities rolled over for implementation in the subsequent periods. I |
167
- |^|^|<|<|<|<|<|^|
168
- |^|^|<|<|<|<|<|^|
169
- |^|^|<|<|<|<|<|^|
170
- |^|^|<|<|<|<|<|^|
171
- |^|^|<|<|<|<|<|^|
172
- |^|^|<|<|<|<|<|^|
173
- | **1.2** | **Revenue Performance** **1.2.1 Local Revenue (LR) Performance** I reviewed the approved Local revenue estimates for the financial year 2019/2020 and noted that the District budgeted to collect UGX.1,294,588,000 during the year but collected UGX.1,259,040,473 representing (97%) performance. of UGX.35,547,527(3%) were recorded in Local Hotel Tax, interest from private entities and Park Fees. Revenue shortfalls affected the implementation of planned activities. The shortfalls in Local Revenue collections Accounting Officer attributed the revenue underperformance to outbreak of the Covid-19 pandemic. The |<|<|<|<|<| revise noted the response and advised the Accounting Officer to always the budget with approval of council to reflect such unforeseen circumstance. I |
174
-
175
-
176
- ---
177
-
178
- # 1.2.2 Performance of GoU receipts-(Transfers received from the I commended the Consolidated Fund)
179
-
180
- Government for the The District budgeted to receive UGX.27,671,220,364 (revised) as grants good performance from the Treasury. I noted that, UGX.26,048,487,102 was warranted/ on
181
-
182
- ### Government
183
-
184
- received representing 94% performance. .
185
-
186
- ### Grants.
187
-
188
- **1.2.3 Transfers from other Government Units/Other Government Transfers** I
189
- advised the The entity budgeted to receive UGX.2,200,739,000 as transfers from other Accounting Officer to Government Units. However, only UGX.1,794,190,545 (82%) was received as engage MoFPED and shown in the table below.
190
-
191
- ##### Table showing performance of revenue transfers from other government agencies
192
-
193
- have the unimplemented activities rolled over **S/n Revenue Source Approved Total Variance %Performa** for implementation **Budget” Receipts nce** in the subsequent **(UGX) (UGX) (UGX)** periods. **”000” ”000” ”000”**
194
- 1 NUSAF 600,000 1,135,222 -535,222 189%
195
- 2 Support to PLE- 10,000 9,493 507 95%
196
- UNEB
197
- 3 URF 920,969 374,071 546,898 41%
198
- 4 YLP 50,000 0 50,000 0%
199
- 5 UWEP 9,844 3,383 6,461 34%
200
- 7 PRELNOR 559,926 256,130 303,796 46%
201
- 8 NTD 50,000 0 50,000 0%
202
- 9 OPM 0 15,892 -15,892 0%
203
- **Total 2,200,739 1,794,191 406,548**
204
-
205
- ######### Source: Financial Statements
206
-
207
- Revenue shortfalls adversely affect the implementation of planned activities.
208
-
209
- The Accounting Officer explained that the underperformance in other Government transfers was due to non-release/ or under-release of the various sources of revenue.
210
-
211
- ######### 1.2.4 Performance from external financing
212
-
213
- The District budgeted to receive UGX.3,254,000,000 as external/donor financing out I
214
- advised the of which UGX.752,730,825 (23%),was received as shown in the table below:
215
-
216
- ######### Showing performance of external funding
217
-
218
- Accounting Officer to engage
219
-
220
- ### the
221
-
222
- development **S Donor** Approved**
223
-
224
- **Total Receipts Variance %Performance** partners and ensure **/ Budget” (UGX) (UGX)**
225
- that the activities are **n ”000” ”000” (UGX)** rolled over and **”000”**
226
- 1 UNICEF 318,000 0 318,000 0% finally implemented. 2 Global fund for 165,000 169,080 -4,080 102.5%
227
- HIV, TB and
228
- Malaria
229
- 3 WHO 30,000 0 30,000 0%
230
- 4 GAVI 158,000 152,407.5 5,592.5 96.5%
231
-
232
- ---
233
-
234
- || Revenue shortfalls affect the implementation of planned activities. The Accounting Officer attributed the revenue underperformance to outbreak of the Covid-19 pandemic. ||
235
- |---|---|---|
236
- | **1.3** | **Absorption of funds** Out of the total receipts for the financial year of UGX.30,140,755,120 UGX.27,266,110,731 (90.5%) was spent by the entity resulting in an unspent balance of UGX.2,874,644,389 (9.5%). The unspent balance at the end of the financial year was subsequently swept back to the consolidated fund account. absorption of released funds results in non-implementation of planned activities and negates the purpose for which funds were disbursed. For example, the construction of the seed school at Palaro did not perform to the expected level and non-implementation of some sports activities due to Covid-19 pandemic. Accounting Officer attributed the under absorption of released funds to the COVID-19 outbreak that led to the lockdown and the failure of the district to fill a number of staffing position whose wage bill had been provided. Under The | I advised the Accounting Officer to ensure that funds for these activities are rolled over and subsequently ensure the speedy implementation of these activities. |
237
- | **1.4** | **Off-budget receipts** Section 36(6), 43 and 44(20) of the PFMA 2015, require all the public resources including external financing to be paid into the consolidated fund and once deposited shall form part of the consolidated fund and shall be availed through the Appropriations Act. Paragraph 24.6.2 of the Treasury Instructions 2017 also requires an Accounting Officer to ensure that all planned development partner disbursements under his or her vote are included in the vote budget estimates, i.e. appropriated by Parliament. 6 of the Budget execution circular requires that all budgets irrespective of the source of financing (GoU/NTR, Donor or local government revenue) will be migrated and loaded onto the IFMS to facilitate budget implementation and reporting. I noted Gulu District did not receive any off-budget financing. Paragraph | I commend the Accounting Officer for adhering to the provisions of the law. |
238
-
239
-
240
- ---
241
-
242
- | **1.5** | **Quantification of outputs/activities** Paragraph 55 of the budget execution circular for the financial year 2019/2020 states that the Accounting Officer is required to submit quarterly performance reports by the 30 th day of the first month of the following quarter. These reports should clearly indicate the actual performance against the planned outputs and performance for each quarter, showing the quantity/quality and physical location of the reported outputs against expenditure. of the eleven (11) outputs with a total of seventeen (17) activities and expenditure of UGX.1.72Bn sampled for assessment, I reviewed the extent of quantification of outputs and activities and noted that all the eleven (11) outputs with a total of seventeen (17) activities (100%) were fully quantified as shown in the table below. **Table: Extent of Quantification by activities** **Summary of Performance by Outputs** Activity details-Analysis** **Categor** **y** **of** outputs** **No.** of outp uts samp led** **% of total out- puts samp led** **Expendi ture** **UGX** Bn** **% proporti on to total expendi ture** **Total no of activiti es in the output s** **No. of Fully Quanti fied activiti es** **No of activiti es not fully quanti fied** **% quantific ation of activities @ category of output** 11 100% 1.72 100% 17 17 00 100% 00 00 00 00 00 00 00 0% 00 00 00 00 00 00 00 0% **11 100 1.72 100 17 17 00 100%** **Source: OAG analysis** **Fully quantifie d outputs 2 Insuffici ently quantifie d outputs 3 Outputs 4 not quantifie** **d** Total** Out |<|<|<|<|<|<|<|<|<| commend the Accounting Officer for the effort. I |
243
- |---|---|---|---|---|---|---|---|---|---|---|---|
244
- |^|^|<|<|<|<|<|<|<|<|<|^|
245
- |^|^|<|<|<|<|<|<|<|<|<|^|
246
- |^|^|<|<|<|<|<|<|<|<|<|^|
247
- |^|^|<|<|<|<|<|<|<|<|<|^|
248
- |^|^|<|<|<|<|<|<|<|<|<|^|
249
- |^|^|<|<|<|<|<|<|<|<|<|^|
250
- |^|^|<|<|<|<|<|<|<|<|<|^|
251
- | **1.6** | **Implementation 6** **of Quantified outputs** I assessed the implementation of eleven (11) out puts that were fully quantified with a total of seventeen (17) activities worth UGX.1.72Bn and noted the following.  Eight (08) outputs with a total of thirteen (13) activities worth UGX 0.93 Bn were fully implemented. The entity implemented all the thirteen (13) activities (100%) within these outputs.  Three (03) outputs with a total of four (04) activities worth UGX 0.79 Bn were partially implemented by the time of the audit. |<|<|<|<|<|<|<|<|<| advised the Accounting Officer to address the issue of PBS with the relevant authority and always make on their communication/request to the Ministry. follow-up I |
252
-
253
-
254
- ---
255
-
256
- | **Total no of activi ties** **% prop ortio n to total expe nditu re** **No of Fully impl eme nted activi ties** **No. Of parti ally impl eme nted activi ties** **No of activi ties that were not imple ment ed** **Extent of impln of activit** **ies** per categ ory of output 8** 73 0.93 54 13 13 00 00 100 **Expe ndit ure UGX** **% of impl eme ntat ion** **Categor** **y** output** **of** **No of out puts** **Table showing the level of implementation per outputs by activities** **Summary of Performance by Output** Activity details-Analysis** **3** 27 0.79 46 04 00 04 00 70 **00** 00 00 00 00 00 00 00 00 Fully impleme nted outputs **5** Partially Impleme nted outputs **6** Outputs Not Impleme nted **Total** implementation of planned activities implies that the expected services to the beneficiary communities were not attained. For example, the entity did not complete work on  Wii- Apaya stream   Palaro Seed Secondary School 33.4km of routine mechanized district roads as shown in **Appendix 1** Accounting Officer explained that failure to fully implement all planned activities and outputs was due to the use of Programme Budgeting System (PBS) where all the outputs are not quantified especially the non-standard outputs. He further explained that, Wii-Apaya Stream was an emergence activity which was unplanned for, and implemented under force account using Rural Transport Infrastructure (RTI) where the delay was as a result of the delay by the Ministry to respond to the request for the excavator and low bed. **11 100 1.72 100 17 13 04 03 86 Source: OAG analysis** **Bn** Partial The |<|<|<|<|<|<|<|<|<|<|<||
257
- |---|---|---|---|---|---|---|---|---|---|---|---|---|
258
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
259
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
260
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
261
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
262
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
263
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
264
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
265
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
266
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
267
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
268
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
269
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
270
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
271
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
272
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
273
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
274
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
275
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
276
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
277
- | **Preparation 7** and submission of Monitoring plans and reports** Paragraph 58 of the Budget Execution Circular for 2019/20 requires the Accounting Officer to prepare and submit annual monitoring plans for government programs and or projects under his/her vote to the Office of the Prime Minister (OPM) with a copy to Ministry of Finance, Planning and Economic Development (MoFPED), Ministry of Local Government (MoLG) and National Planning Authority (NPA) for harmonisation to ensure proper coordination to avoid duplication and fatigue. The Accounting Officers are also expected to submit quarterly monitoring reports to OPM with a copy to the MoFPED for the attention of the Director Budget. Contrary to this I noted that;  The entity did not prepare and submit the annual monitoring plans to MoFPED, MoLG and NPA as required.  The entity did not also submit quarterly monitoring reports to OPM and MoFPED as required. **1.7** |<|<|<|<|<|<|<|<|<|<|<| advised the Accounting Officer to always ensure compliance with the budget execution circular. I |
278
- |^|<|<|<|<|<|<|<|<|<|<|<|^|
279
-
280
-
281
- ---
282
-
283
- | This practice is not only in contravention of the circular instructions but also hinders efforts of timely monitoring of the implementation of the budget. The Accounting Officer acknowledged the anomaly but explained that the quarterly monitoring of Government programmes was executed. |<|<|<|<|<|<|<||
284
- |---|---|---|---|---|---|---|---|---|
285
- | **Submission 8** **of Quarterly Performance Reports** Paragraph 55 of the BEC for the financial year 2019/2020 states that the Accounting Officer is required to submit quarterly performance reports by the 30 th day of the first month of the following quarter. **1.8** noted that the entity submitted performance reports for Q1, Q2, Q3, Q4 after the deadline given for submission of the reports as indicated in the table below **No Details** 1 2 3 4 Quarter One Quarter Two Quarter Three Quarter Four **Source: OAG analysis** **Deadline for submission** 31/10/2019 31/01/2020 30/04/2020 31/07/2020 **Actual date of submission** 10/12/2019 01/02/2020 25/05/2020 Not submitted. yet **Comment** Delayed Delayed Delayed Delayed to submit performance reports in time not only contravenes the budget circular instructions, but also negatively affects the timely evaluation of performance and decision making. Accounting Officer explained that the delayed submission of performance reports was due to the upgrading the PBS which erased data that was input twice and the district experiencing system breakdown in the months of April to mid-June 2020 that contributed to the delay of the department to extract data to be used for reporting. I Failure The |<|<|<|<|<|<|<| advised the Accounting Officer to always engage the PBS support of MOFPED timely resolution of system challenges. desk for I |
286
- |^|<|<|<|<|<|<|<|^|
287
- |^|<|<|<|<|<|<|<|^|
288
- |^|<|<|<|<|<|<|<|^|
289
- |^|<|<|<|<|<|<|<|^|
290
- |^|<|<|<|<|<|<|<|^|
291
- |^|<|<|<|<|<|<|<|^|
292
- |^|<|<|<|<|<|<|<|^|
293
- | **1.9 Accuracy 9** **of Performance reports submitted** Paragraph 55 of the budget execution circular for the financial year 2019/2020 states that the Accounting Officer is required to submit quarterly performance reports by the 30 th day of the first month of the following quarter. These reports should clearly indicate the actual performance against the planned outputs and performance for each quarter, showing the quantity/quality and physical location of the reported outputs against expenditure. accuracy of performance could not be verified as the 4 th quarter performance report was not clear. Accounting officer explained that this was due to the delay in the approval of the fourth quarter report by the Budget Directorate at Ministry of Finance, Planning and Economic Development. The The |<|<|<|<|<|<|<| I advised the Accounting Officer to always ensure that the performance reports are clear and accurate. |
294
- |^|<|<|<|<|<|<|<|^|
295
-
296
-
297
- ---
298
-
299
- supplementary funding, the government encouraged citizens to make voluntary contributions to the State.
300
-
301
- ## Because the response to the pandemic was emergent in nature, i.e. it was neither
302
-
303
- anticipated nor planned for, there was a risk that the entities that participated in this intervention may experience challenges in optimally applying the availed resource to
304
-
305
- ## address the effects of the pandemic. I, therefore, considered this as a key audit matter
306
-
307
- and subsequently developed procedures to assess how entities managed the interventions and to satisfy myself that this was done in compliance with the applicable laws, regulations and guidelines.
308
-
309
- #### I specifically focused on; establishing how much funds were received, the extent of absorption of the funds, existence of approved work plans, compliance with PPDA legal
310
-
311
- framework, the existence of proper accountability for the funds, ensuring that there
312
-
313
- ## was accurate reporting among others. Based on the work performed I noted the
314
-
315
- following;
316
-
317
- | **No** | **Observation** |<|<|<|<| **Recommendation** |
318
- |---|---|---|---|---|---|---|
319
- | **1.1** | **Receipts and utilization of funds** **Receipts** The entity received a total of UGX **1,236,447,000** from different sources as summarised in the table below **No. Details/Source** **1** 1.1 1.2 **2** 2.1 2.4 **Receipts from Treasury** Supplementary budget allocation Receipts from MPs **Sub Total** **Donations** Receipts from Local donations-Cash Receipts Cash **Sub Total** Total Receipts** from Local donations-Non **Amount (UGX)** 165,000,000 60,000,000 **225,000,000** 27,500,000 983,947,000 **1,011,447,000 1,236,447,000** **a)** |<|<|<|<||
320
- |^|^|<|<|<|<|^|
321
- |^|^|<|<|<|<|^|
322
- |^|^|<|<|<|<|^|
323
- |^|^|<|<|<|<|^|
324
- |^|^|<|<|<|<|^|
325
- |^|^|<|<|<|<|^|
326
- |^|^|<|<|<|<|^|
327
- |^|^|<|<|<|<|^|
328
- |^|^|<|<|<|<|^|
329
- |^|^|<|<|<|<|^|
330
- |^|^|<|<|<|<|^|
331
- |^| **b) Banking of cash receipts** I observed that out of the cash received of UGX.87,500,000 only UGX.60,000,000 (68.6%) was banked on Gulu DLG collection Account in BOU while the balance of UGX.27,500,000 (31.4%) was used at source contrary to Paragraph 10.19.2 of the TIs, 2017 which exposes the funds to a risk of abuse. Accounting Officer explained that the money that was spent at source was used to handle Covid related emergencies which required urgent attention. The |<|<|<|<| the I advised the Accounting Officer to always adhere to Treasury Instructions and ensure that all cash collections are promptly banked. |
332
- | **1.2** | **Absorption and utilization of funds** Out of the total receipts of UGX.252,500,000 (excluding non-cash donations) the entity absorbed UGX.212,500,000 representing absorption level of 84%. The balance of UGX 40,000,000 is part of the receipts from MPs whose cash limit was never given to the entity by the centre. The funds were spent as follows. **No Details** Amount (UGX) Percentage** |<|<|<|<| I advised the Accounting Officer to follow up the UGX 40,000,000 that was retained by Treasury and ensure cash limits are obtained for the same. |
333
-
334
-
335
- ---
336
-
337
- ||| 1 | Allowances | 109,960,000 ||||
338
- |---|---|---|---|---|---|---|---|
339
- | 2 |^| Fuel | 49,036,590 | 60 |||^|
340
- | 3 |^| Welfare | 33,493,410 | 12 |||^|
341
- | 4 |^| Medical Supplies | 20,000,000 ||||^|
342
- ||^| TOTAL | 212,490,000 | 100 |||^|
343
- | **1.3** | **Preparation and approval of work plans** Paragraph 23 of the Budget Execution Circular 2019/20 requires that all supplementary budget requests must be supported by a realistic work plan and budget. noted that the entity prepared and approved work plans for the use of funds received. I |<|<|<|<|<| I commend Accounting Officer adhering guidelines to the for the |
344
- | **1.4** | **Compliance with Procurement regulations** Paragraph 5 of the guidelines issued by the PSST on the receipt and accountability of donations for Covid-19 requires Accounting Officers to follow PPDA regulations which guide on how procurements should be undertaken under emergency situations. observed that the entity undertook procurements worth UGX.23,715,000 using funds received as part of the Covid-19 response. My review of the procurement records revealed procurement had no major anomalies as summarised in **Appendix III.** Accounting Officer pledged to uphold the good practice. I The |<|<|<|<|<| The Accounting Officer was commended for the level of compliance. |
345
- | **1.5** | **Accountability of funds** Paragraph 10.10.1 of the Treasury Instructions, 2017 requires that all payments must be adequately supported with sufficient details to enable them to be checked without reference to other documents. reviewed expenditure records availed and noted that all the funds were satisfactorily accounted for as per the Treasury Instructions. I |<|<|<|<|<| I commended Accounting Officer the accountability of funds. the for satisfactory |
346
- | **1.6** | **Management of in-kind donations** Paragraph 15.5.1 of the Treasury Instructions,2017 states that inventories are accounted for by value as well as by quantity, and it is necessary for an Accounting Officer to keep records so as to determine the unit cost of each inventory item and the reconciliation of the total value of the stocks of inventories with the financial records. The PS/ST also guided that all in-kind items received in-kind should be taken on charge, distributed with the approval of the Covid-19 task forces and appropriately accounted for. entity received in-kind donation (items) from a number of sources as shown in **appendix IV.** I noted the following from my review of how these were managed. All the items were valued as required by the Treasury Instructions I was therefore able to confirm the value of these donations in kind and the accuracy of the balances reported in the financial statements. All items were taken in charge by the entity staff as required by the treasury instructions. There was evidence of acknowledgement of receipt for all items the Entity distributed.    The Accounting Officer pledged to uphold the good practice. The |<|<|<|<|<| I commended the Accounting officer for complying with guidelines by PSST and the Treasury Instructions. issued |
347
- | **1.7** | **Management of Quarantine Centres** I undertook procedures to ascertain how the quarantine centre was managed and noted that the Entity managed the one quarantine centre |<|<|<|<|<| I commended the Accounting officer for managing the quarantine |
348
-
349
-
350
- ---
351
-
352
- established at Gulu College of Sciences Laro. I reviewed records relating to
353
- centre well. management of the centre and noted that the entity had received UGX.35,500,000 to facilitate the proper management of the quarantine
354
- centres. From my inspection, I observed that the quarantine centre is well
355
- managed.
356
-
357
- ### Emphasis of Matter
358
-
359
- ## Without qualifying my opinion, I draw attention to the following matters disclosed in
360
-
361
- the Financial Statements:
362
-
363
- **3.0**
364
-
365
- ######## Effects of the creation of Gulu City on the Assets and liabilities of Gulu District Local Government
366
-
367
- ## The GOU upgraded Gulu MC to a City status with effect from 1 st July 2020. This
368
-
369
- ## upgrade of the Municipal Council to City status extended the geographical area of
370
-
371
- the city to include Laliya Sub-County and two parishes of Unyama Sub-county (Pakwelo and Unyama Parishes).
372
-
373
- #### A review of the commentary by the Accounting Officer reflected that the District would relocate to Awach Sub-county implying reconstruction of new District Headquarter officer and incurring other administrative costs associated with the
374
-
375
- relocation of District operating station.
376
-
377
- #### The Accounting Officer further disclosed that the effects on other assets owned by the District within the new city are being discussed with the Ministry of Local Government(MoLG).
378
-
379
- ## I await the outcome of this discussion and final guidance by GOU on this matter
380
-
381
- ### 4.0 Accumulated Payables
382
-
383
- ## Included in the payables balance disclosed in Note 23 on page 31 of the financial
384
-
385
- statements is UGX.1,470,813,483 which relates to sundry creditors(UGX.1,345,261,425) and trade creditors (UGX.125,562,058). These outstanding payables may lead to litigation costs for non and delayed settlements.
386
-
387
- ---
388
-
389
- consistent with the financial statements or my knowledge obtained in the audit, or otherwise appears to be materially misstated. If, based on the work I have performed, I conclude that there is a material misstatement of this other information; I am required to report that fact.
390
-
391
- ## I have nothing to report in this regard.
392
-
393
- **Management’s Responsibility for the Financial Statements**
394
-
395
- ## Under Article 164 of the Constitution of the Republic of Uganda, 1995 (as amended) and
396
-
397
- #### Section 45 of the PFMA, 2015, the Accounting Officer is accountable to Parliament for the funds and resources of Gulu District Local Government. The Accounting Officer is also responsible for the preparation of financial statements in accordance with the requirements of the Public Finance Management Act (PFMA), 2015 and
398
-
399
- the Financial Reporting Guide, 2018 and for such internal control as management determines necessary to enable the preparation of financial statements that are free from material misstatement whether due to fraud or error.
400
- In preparing the financial statements, the Accounting Officer is responsible for assessing
401
-
402
- #### the District’s ability to continue as a going concern, disclosing, as applicable, matters related to going concern and using the going concern basis of accounting, unless the Accounting Officer has a realistic alternative to the contrary.
403
-
404
- ### Auditor’s Responsibility
405
-
406
- ## My objectives are to obtain reasonable assurance about whether the financial statements as
407
-
408
- a whole are free from material misstatement, whether due to fraud or error, and to issue an
409
-
410
- ## auditor’s report that includes my opinion. Reasonable assurance is a high level of assurance,
411
-
412
- but is not a guarantee that an audit conducted in accordance with ISSAIs will always detect
413
-
414
- ## a material misstatement when it exists. Misstatements can arise from fraud or error and are
415
-
416
- considered material if, individually or in the aggregate, they could reasonably be expected to influence the economic decisions of users taken on the basis of these financial statements.
417
-
418
- #### As part of an audit in accordance with ISSAI’s, I exercise professional judgment and maintain professional scepticism throughout the audit. I also:  Identify and assess the risks of material misstatement of the financial statements,
419
-
420
- whether due to fraud or error, design and perform audit procedures responsive to those risks, and obtain audit evidence that is sufficient and appropriate to provide a basis for
421
-
422
- ---
423
-
424
- ## financial statements or, if such disclosures are inadequate, to modify my opinion. My
425
-
426
- conclusions are based on the audit evidence obtained up to the date of my auditor’s
427
-
428
- ## report. However, future events or conditions may cause the District to fail to deliver its
429
-
430
- mandate.
431
-
432
- ##  Evaluate the overall presentation, structure and content of the financial statements,
433
-
434
- including the disclosures, and whether the financial statements represent the underlying transactions and events in a manner that achieves fair presentation.
435
- I communicate with the Accounting Officer regarding, among other matters, the planned scope and timing of the audit and significant audit findings, including any significant
436
-
437
- #### deficiencies in internal control that I identify during my audit. I also provide the Accounting Officer with a statement that I have complied with relevant
438
-
439
- ethical requirements regarding independence, and to communicate with him/her all relationships and other matters that may reasonably be thought to bear on my independence, and where applicable, related safeguards.
440
-
441
- ## From the matters communicated with the Accounting Officer, I determine those matters that
442
-
443
- were of most significance in the audit of the financial statements of the current period and
444
-
445
- ## are therefore the key audit matters. I describe these matters in my auditor’s report unless
446
-
447
- law or regulation precludes public disclosure about the matter or when, in extremely rare
448
-
449
- ## circumstances, I determine that a matter should not be communicated in my report because
450
-
451
- the adverse consequences of doing so would reasonably be expected to outweigh the public interest benefits of such communication.
452
-
453
- ### Other Reporting Responsibilities
454
-
455
- In accordance with Section 19 (1) of the National Audit Act, 2008, I report to you, based on
456
-
457
- ## my work described on the audit of Financial Statements, that; except for the matters raised
458
-
459
- in compliance with legislation section below, and whose effect has been considered in forming my opinion on financial statements, the activities, financial transactions and information reflected in the financial statements that have come to my notice during the audit, are in all material respects, in compliance with the authorities which govern them.
460
-
461
- ### Report on the Audit of Compliance with Legislation
462
-
463
- ## The material findings in respect of the compliance criteria for the applicable subject matters
464
-
465
- ---
466
-
467
- ## impediments and make recommendations for improvement. Specifically, the audit was
468
-
469
- intended to ascertain whether government Vehicles were/are:
470
-
471
- - Acquired in compliance with Government vehicle acquisition guidelines;
472
-
473
- ####  Comprehensively recorded in the assets register to ensure their proper management;  Adequately allocated, operated and utilized to enable delivery of public service;  Properly and regularly maintained to achieve optimal performance, increased useful
474
-
475
- lives and reduced running costs; and
476
-
477
- ##  Disposed in compliance with PPDA guidelines, and disposal proceeds are properly
478
-
479
- accounted for.
480
- The study took a scope of three financial years: 2017/18-2019/20. From the
481
-
482
- ## procedures undertaken, I noted the following key observations;
483
-
484
- || **Key Observations** | **Audit Recommendation/ Comment** |
485
- |---|---|---|
486
- | **4.1 4.1.1** | the three financial years the District planned to spend UGX.50,000,000 on acquisition of vehicles from government funding. A sum of UGX.50,000,000 (100%) was warranted and released by the Treasury for the purpose and the District purchased 01 vehicle. **ACQUISITION OF MOTOR VEHICLES Funding** For ||
487
- | **4.1.2** | **Compliance with Government Ban on Acquisition of Motor Vehicles** According to the Circular letter Ref; BDP/86/107/03 and dated 15 th May 2019 from the Permanent Secretary and Secretary to the Treasury to all Accounting Officers, Government issued a freeze order on purchase of vehicles by all MDAs during the FY 2019/20. Further guidance from the Ministry of Public Service (MoPS) through a Circular letter Ref; ADM 99/205/01 dated 21 st August 2019 indicated that clearance would only be given for procurement of vehicles under on-going donor funded projects. noted that the District acquired 01 motor vehicle at a cost of UGX.0.05bn during the FY 2019/20 using Government of Uganda funds with the necessary waiver from, the PS/ST. I | The Accounting Officer is commended for the good practice. |
488
- | **4.1.3** | Paragraph 8.6.2 of the Treasury Instructions (TIs), 2017 requires implementation of the budget to follow the work plans, procurement and recruitment plans approved by Parliament. It was observed that no vehicle was purchased outside the annual work plan. The Accounting Officer acknowledged the observation and promised to uphold the good practice. **Unplanned Acquisition of Motor Vehicles** | I commended the Accounting Officer for adhering the prescribed procurement practices. to |
489
- | **4.1.4** | **Compliance with vehicle standardization guidelines of Government** Public Service Circular Standing Instruction No. 1 of 1999 and the Establishment Notice No. 1 of 2003 require standardization of vehicles for government officials and Projects by setting out engine capacity limits and vehicles specifications. I noted that the 01 vehicle (100%) acquired at a total cost of UGX.50,000,000 was in line with the approved engine capacity recommended. Accounting Officer acknowledged the observation and promised to uphold good practice. The | I commended the Accounting officer for adhering to the set guidelines. |
490
-
491
-
492
- ---
493
-
494
- | **4.2.0 4.2.1** | **Improper maintenance of Motor Vehicle Records** Section 34 (2) of the Public Finance Management Act, 2015 requires an Accounting Officer to keep a register of assets and inventory in the format prescribed by the Accountant General. Furthermore, Paragraph 16.6.1(e) & (f) of the TIs, 2017 requires recording of the acquisition cost and estimated useful life of the asset, which should assist in determining the time of replacement and depreciation cost of an asset. **MOTOR VEHICLE RECORDING** Furthermore, Paragraph 10.13.4 of the Tis, 2017 requires all fixed assets acquisitions to be captured in the fixed assets module of the Government Computerised Financial Management Information System (GFMIS). I noted that out of 36 vehicles physically inspected, 35 vehicles (99.4%) were duly recorded in the assets register while one (1) vehicle (0.6%) acquired at a cost of UGX.50,000,000 was not recorded in the assets register. A total of 35 vehicles (99.4%) out of the 36 inspected were recorded in the format prescribed by the Accountant General which required capturing; date of purchase, type of vehicle, registration number, acquisition cost, estimated useful life, physical location, and condition. One (1) vehicle (0.4%) acquired at a total cost of UGX.50,000,000 was not recorded in the required format. the sampled 36 vehicles were traced to the staff or locations as recorded in the assets register which allowed traceability of vehicles. The Accounting Officer attributed the good performance to enforcement of the requirements in the Public Finance Management Act, and the Treasury Instructions. All | I commended the Accounting Officer for the good controls in place. |
495
- |---|---|---|
496
- | **4.3.0 4.3.1** | **MOTOR VEHICLE USAGE** **Existence of a fleet management policy and guidelines** I noted that the District did not have a policy on Motor vehicle management to guide the usage and eliminate theft, losses, wastage and misuse of motor vehicles. This affects the entity’s ability to address its unique motor vehicle challenges which may not be envisaged in the standing Orders and Treasury Accounting Instructions. Accounting Officer acknowledged the anomaly and pledged to implement the audit recommendation. The | I advised the Accounting Officer to put in place a vehicle management policy streamlining usage of vehicles so as to eliminate wastage and of vehicles. misuse |
497
- | **4.3.2** | **Vehicle allocation** A review of motor vehicles allocation revealed that there were no officers allocated vehicles. Failure to allocate vehicles to officers may lead to irrational use of resources affecting service delivery. The Accounting Officer explained that the District has few motor vehicles which are shared among departments during implementation of programmes; which allocates vehicles to officers at UISE a challenge. Some vehicles sent to the District were attached to projects, and these projects are managed by designated officers who are not necessarily Heads of Departments. **Motor** | I advised the Accounting Officer to engage Ministry of Public Service on the revision the standing order in that regard. of |
498
- | **4.3.3** | **Support to Entity Service Delivery** A review of the vehicle allocation to key service centers in the District revealed that some departments or units were not adequately allocated vehicles as indicated in the table below; | I advised the Accounting Officer to always rationalize the allocation of vehicles in various departments/units of the District to ensure the |
499
-
500
-
501
- ---
502
-
503
- || **SN** | **Unit/Depa rtment requiring vehicles** |<| **No. of vehicl es allocat ed** **Type** of vehicles allocated** |<| **Are allocated vehicles adequate and appropria te (yes/no)** |<| **Reasons** **allocation** **for** **inadequate** |<|<| effective and efficient service delivery in the departments. |
504
- |---|---|---|---|---|---|---|---|---|---|---|---|
505
- |^| **1** | Trade |<| 0 0 |<| No |<| When the greater Gulu was divided and Amuru plus Omoro Districts created, the vehicles’ had to be divided hence creating the current gaps. Revenue too creation of those districts. dwindled with |<|<|^|
506
- |^| **2** | Engineering |<| D/CABIN 3 PICK-UP |<| No |<| All are in dangerous mechanical conditions. Only 1 running |<|<|^|
507
- |^| **3** | Administrati on |<| D/CABIN PICK-UP 1 |<| No |<| When the greater Gulu was divided and Amuru plus Omoro Districts created, the vehicles’ had to be divided hence creating the current gaps Revenue too creation of those districts. dwindled with |<|<|^|
508
- |^| Inadequate allocation of vehicles to the above District departments/units affected supervision and monitoring efforts of those departments/units which negatively affecting the level of service delivery in regard to enforcement of education standards. The Accounting Officer pledged that he would ensure the available though inadequate vehicles will be shared amongst the departments to achieve planned activities. |<|<|<|<|<|<|<|<|<|^|
509
- | **VEHICLE MAINTENANCE** **Adequacy of Vehicle Maintenance Funding** **4.4.0** noted that the District spent a total of UGX. 566,964,207 against the vehicle maintenance budget of UGX. 653,602,358 reflecting a funding shortfall to the tune of UGX.86,638,157 which is 13.3% of the budgeted vehicle maintenance funds as indicated in the table below; **FY** Vehicle Maintenance Budget (A)** **Amount spent (C)** **Variance (A-C)** **Average spending per vehicle (C/B)** **No. of operatio nal entity motor Vehicles (B)** **2017/1** 135 **8** **2018/1** **9** **2019/2** 0** 140,654,070 118,820,513 880,152 21,833,557 266,115,597 137 241,916,982 1,765,817 24,198,615 246,832,691 138 206,226,712 1,494,396 40,605,979 **Total 653,602,358 566,964,207 86,638,151** The district’s annual average vehicle maintenance cost increased by 41% from UGX.880,152 in the FY 2017/18 to UGX.1,494,396. This increment may partly be caused by the aging number of the fleet as illustrated by the fewer number of vehicle replacements. Accounting Officer explained that the District has few vehicles. However, efforts were being made to provide for additional vehicles through local revenue budgets as the Ministry had banned purchase of new vehicles under the different funding. I **4.4.1** The |<|<|<|<|<|<|<|<|<|<| advised the Accounting Officer to devise strategies that would bring vehicle maintenance costs to manageable levels. I |
510
- |^|<|<|<|<|<|<|<|<|<|<|^|
511
- |^|<|<|<|<|<|<|<|<|<|<|^|
512
- |^|<|<|<|<|<|<|<|<|<|<|^|
513
- |^|<|<|<|<|<|<|<|<|<|<|^|
514
- |^|<|<|<|<|<|<|<|<|<|<|^|
515
- |^|<|<|<|<|<|<|<|<|<|<|^|
516
- |^|<|<|<|<|<|<|<|<|<|<|^|
517
- |^|<|<|<|<|<|<|<|<|<|<|^|
518
-
519
-
520
- ---
521
-
522
- ### 6.0 Status of Basic Medical Equipment in HCIV
523
-
524
- Medical Equipment represents a substantial asset in the health care delivery system;
525
-
526
- ## including maternal care and it needs to be managed efficiently. Moreover, the way in
527
-
528
- which it is purchased, managed and used can influence the quality of health care
529
-
530
- #### delivered to patients. Medical equipment can also pose a risk to patients and staff, particularly if used improperly. In addition, routine/periodic and corrective
531
-
532
- maintenance of medical equipment is key in achieving safe and cost-effective management of medical equipment.
533
-
534
- ## It is against this background that the status of basic medical equipment for maternal
535
-
536
- health was selected as an area of focus in the audit of financial year ending 30th June 2020.
537
-
538
- ## Based on my audit I made the following observations;
539
-
540
- ### 7.0 Inadequate medical equipment at Awach Health Centre IV
541
-
542
- ## Section 7.26 to 7.28 of Health Sector Service standards & Service delivery standards,
543
-
544
- 2016 defines the appropriate functional equipment and tools required for handling normal delivery, resuscitation of new born, and emergency care and resuscitation of mothers.
545
-
546
- ## However, audit observed that the health facility had inadequate two medical
547
-
548
- equipment fetoscopes and Blood Pressure machines while the rest are in excess.
549
-
550
- | **S/n** | **Type of medical equipment** | **Recommended no** | **Available no** |
551
- |---|---|---|---|
552
- | 1 | Fetoscopes | 10 | 9 |
553
- | 2 | Episiotomy set | 2 | 4 |
554
- | 3 | Penguin sucker | 5 | 10 |
555
- | 4 | Ambubag–Adult | 2 | 3 |
556
- | 5 | Blood pressure machines (bp) | 5 | 4 |
557
-
558
-
559
- Consequently, the health facility might not have been able to provide adequate screening and diagnostic services to the patients.
560
-
561
- The Accounting Officer explained that the district was able to procure more equipment for the health facility. However, the reasons for excess procurement of some equipment and leave out inadequate equipment was not explained.
562
-
563
- - Normal deliveries represented 89%
564
- - Delivery by Caesarean represented 2.2%
565
-
566
- ---
567
-
568
- in charge of the ward attributed the referral of mothers deliveries to lack of a blood bank at the health centre.
569
-
570
- ## The HCIV is not in position to provide adequate maternal health services to the
571
-
572
- community.
573
-
574
- ## The Accounting Officer explained that blood transfusion services are now provided
575
-
576
- and readily available at all times to patients that need it unless there is a stock out of the blood.
577
-
578
- I commended the Accounting Officer’s efforts.
579
-
580
- **9.0 Follow up on UGIFT projects**
581
-
582
- ## During last year’s audit process, it was noted that the district had commenced
583
-
584
- construction works on Palaro Seed Secondary School under the Education Sector. I carried out a follow-up audit on this project to assess;
585
-
586
- ##  The level of implementation of the works against the approved contracts,
587
-
588
- work plans and outputs;
589
-
590
- ##  The usage, functionality and quality of the infrastructure works in the schools.
591
-
592
- **9.1** Delayed physical progress of the works**
593
-
594
- #### During the audit, I noted that the planned commencement date of works was 6 th July 2019 and completion date by 30 th June 2021 as per the Contract Agreement. A
595
-
596
- review of the progress report revealed that planned works were behind schedule by 3 months as shown in photos below:-
597
-
598
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10012.jpg)
599
-
600
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10013.jpg)
601
-
602
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10014.jpg)
603
-
604
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10015.jpg)
605
-
606
- ---
607
-
608
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10017.jpg)
609
-
610
- ######### ICT Block
611
-
612
- Column bars installed awaits casting
613
-
614
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10019.jpg)
615
-
616
- ######### 3 classroom Blocks @ 2 class rooms
617
-
618
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10018.jpg)
619
-
620
- ######### 2 unit Science Laboratory block
621
-
622
- Brick works has reached ring beam level and await casting the columns and beams as well
623
-
624
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10020.jpg)
625
-
626
- ######### First block of 2 classrooms
627
-
628
- Brickworks has reached beam level and column bars Brickworks has reached beam level and column bars installed and awaits casting the columns and ring installed and awaits casting the columns and ring beam beam
629
-
630
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10021.jpg)
631
-
632
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10022.jpg)
633
-
634
- ---
635
-
636
- **9.2**
637
-
638
- ### Ineffective Internal control over certification of works for payments
639
-
640
- ## I examined the interim payment certificates of M/s.Davich Company Ltd Contractor
641
-
642
- to establish the availability of measurement sheets detailing the quantities and costs
643
-
644
- #### in the payment certificates. I noted no inconsistencies and there was no delayed settlement of the certificates. The amount paid to the contractor was also found to
645
-
646
- be commensurate with the works certified.
647
-
648
- I commended the Accounting Officer for the effective internal control over works certification.
649
-
650
- **9.3**
651
- **Contract supervision and monitoring;**
652
- I reviewed the monthly progress reports and contract management file to ascertain
653
-
654
- ## the extent of project supervision and monitoring and I noted that the reports defined
655
-
656
- the scope of works, the progress of work in terms of physical, financial and
657
-
658
- ## timeliness, an indicator that the progress reports are adequate. Additionally, there
659
-
660
- were four sets of minutes of site meetings availed and weekly monitoring reports on the construction by the District Engineer.
661
-
662
- ## The Accounting Officer attributed this good performance to the weekly supervision
663
-
664
- and monitoring by the District team.
665
-
666
- #### I commended the Accounting Officer and encouraged him to strengthen supervision and monitoring even more in order for the Contractor to deliver on time.
667
-
668
- ### 10.0 Under staffing
669
-
670
- #### Uganda Public Service Standing Orders Chapter (A-a) paragraph 15(a) requires Permanent Secretary Ministry of Public Service to determine the terms and conditions of Service and the structures of the Public Service in consultation with the Secretary to the Treasury.
671
-
672
- ## It was observed that out of the staff establishment of 233 employees, only
673
-
674
- 159(68%) posts were filled leaving a staffing gap of 74 (32%) as shown in
675
-
676
- ### Appendix V.
677
-
678
- ---
679
-
680
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202020/img-10025.jpg)
681
-
682
- John F.S. Muwanga
683
-
684
- ### AUDITOR GENERAL
685
-
686
- 15 th December, 2020
687
-
688
- ---
689
-
690
- ### Appendix I: Evaluation of the achievement of planned outputs
691
-
692
- | **Planning** |<|<|<|<| **Release of funds and implementation** |<|<|<|<|<|<|<|<|<|<| **Monitori ng and Evaluatio n** |<| **Reporting** |
693
- |---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
694
- | **Progra mme/ Project** || **Output/ Activitie s** | **Are the resou rces alloc ated/ estim ates base d on realis tic assu mpti ons (Yes/** **No)** If no give reaso ns** | **Planned Target** **for** the Financial year** | **Budge ted amoun t UGX (‘000’)** | **Amount Revised** | **Amount released** | **Amount spent** | **by** **Achieved Target Financial year-end @ annual performance report** ||| **Causes** for** **the variances** |<| **for variances** | **Audit conclusion Fully, partially, or Not implemented** |<| **the in the** **no** | **Is** the performance** **of** the activity accurately reported in the annual performance reports-** **(Yes/No)** **no** reasons** **If give** |
695
- |^| **UGX (‘000’)** |^|^|^|^| **UGX (‘000’)** | **UGX (‘000’)** | **annual performance report** |^||^|^|<|^|^|<|^|^|
696
- | **Administration** |<|<|<|<|||||||<|<|<|<|<|<|<|<|
697
- | **1381 District and Urban Admini stratio n** | of Renovati on District store |<| **YES** | District store renovated | 7,590 | 7,590 | 7,590 | 7,590 | District renovated store | 0 |<| NA |<| **Fully implemented** |<| **No M&E report** |<| **Quarter report availed.** **4 not** |
698
- | **Education Department** |<|<|<|<| **0** | 0 | 0 | 0 ||<|<|<|<|<|<|<|<|<|
699
- | **0781 Pre- Primary and** |<| **(0781 80 Classr oom** | **Yes** | Construction of 1 block of 2 classrooms at | 106,38 2 | 106,382 | 106,382 | 75,000 | Construction of 1 block of 2 classrooms at |<| 0 |<| **Fully implemented;** |<| **No M&E report** |<| **Quarter 4 report not availed.** |<|
700
-
701
-
702
- ##### Variance Was
703
-
704
- **activity reported**
705
-
706
- ##### on
707
-
708
- **periodic monitori**
709
-
710
- ##### ng
711
-
712
- **reports- (Yes/No)**
713
-
714
- ##### If give
715
-
716
- **reasons**
717
-
718
- 22
719
-
720
- ---
721
-
722
- | **Primary Educatio n** | **constr uction and rehabil itation )** || Panykworo ||||| Panykworo ||||||
723
- |---|---|---|---|---|---|---|---|---|---|---|---|---|---|
724
- |^|^| Construction of 1 block of 4 units teachers\` house | 102,92 3 | 102,923 | 102,923 | 94,616 | Construction of 1 block of 4 units teachers\` house | 0 | **Fully implemented;** |<| **No M&E report** | **Quarter 4 report not availed.** |
725
- |^|^| Partial construction of of 1 block of 2 classrooms at Kitenywalo PS | 33,141 | 33,141 | 33,141 | 31,484 | Partial construction of of 1 block of 2 classrooms at Kitenywalo PS | 0 | **Fully implemented;** |<| **No M&E report** | **Quarter 4 report not availed.** |
726
- | **0782 Seconda ry Educatio n** | **07828 0- Secon dary School Constr uction and Rehabi litation )** | **YES** | of seed -Completion Palaro secondary school | 1,455,6 90 | 1,455,690 | 1,455,690 | 481,690 | -Palaro School constructed 0 Seed | NA | **Partially implemented;** |<| **No M&E report** | **Quarter 4 report not availed.** |
727
- |^|^|^| and of Monitoring, Supervision Appraisal capital works Quarterly |^|^|^|^|| and of works Quarterly Monitoring, Supervision Appraisal capital reports | NA | **Fully implemented;** |<| **Quarter 4 report not availed.** |
728
- | **Health Department** |<|<|<| **0** | 0 | 0 | 0 ||<|<|<|<|<|
729
- | **0881 Primary Healthca re** | (08815 5 Standar d Latrine Constru ction Pit | **YES** | Construction of 1 block of 4 stances drainable latrine Patiko HC III at | 21,621 | 21,621 | 21,621 | 18,419 | of Constructed 1 block 4 stances drainable latrine Patiko HC III at | 0 | **Fully implemented;** | **No M&E report** |<| **Quarter 4 report not availed.** |
730
-
731
-
732
- ##### No M&E
733
-
734
- **report**
735
-
736
- 23
737
-
738
- ---
739
-
740
- ||||||||||||||
741
- |---|---|---|---|---|---|---|---|---|---|---|---|---|
742
- || 088180 Health Centre Constru ction and Rehabili tation | **YES** | Partial construction of standard OPD at Lapeta HC II phase 1 | 65,000 | 65,000 | 65,000 | 64,421 | Partial construction of standard OPD at Lapeta HC II phase 1 done | 0 | **Fully implemented;** | **No M&E report** | **Quarter 4 report not availed.** |
743
- | **Roads and Engineering** |<|<|<| **0** | 0 | 0 | 0 ||<|<|<|<|
744
- | **0481 District, Urban and Commun ity Access Roads** | **Mainte nance of Distric t roads** | **YES** | Routine mechanised maintainance- 42.5km | 774,25 4 | 774,254 | 455,605 | 318,649 | -33.4 km of district roads Routinely Mechanised | 9.1 | **Partially implemented;** | **No M&E report** | **Quarter 4 report not availed.** |
745
- |^|^|^| -Manual Maintenance 378.3km District roads of of |^|^|^|^| -378.3km of District roads manual maintened for 2 months | 0 | **Partially implemented;** | **No M&E report** | **Quarter 4 report not availed.** |
746
- |^|^|^| equipment maintained and servced Roads |^|^|^|^| Roads equipment maintained and servced | N/A | **Partially implemented;** | **No M&E report** | **Quarter 4 report not availed.** |
747
- || **Road constr uction and rehabil** | **YES** | Rehabilitation of 3.3 km Gulu PTC- Kidere road | 126,94 0 | 126,940 | 121,788 | 5,152 | 3.3 km Gulu PTC- Kidere road rehabilitated | 0 | **Fully implemented;** | **No M&E report** | **Quarter 4 report not availed.** |
748
-
749
-
750
- 24
751
-
752
- ---
753
-
754
- || **itation** ||||||||||||
755
- |---|---|---|---|---|---|---|---|---|---|---|---|---|
756
- ||| **YES** | \- Emergency works on Wii- Apaya stream | 54,239 | 54,239 | 54,239 | 0 | -Armco culverts installed | 1 | **Not implemented;** | **No M&E report** | **Quarter 4 report not availed.** |
757
- | **WATER** |<|<|<| 0 | 0 | 0 | 0 ||<|<|<|<|
758
- | **0981 Rural Water Supply and Sanitatio n** | Design of Rural Growth centre water scheme | **YES** | Design of pipe water system and sanitation facilities at Cwero Growth Centre | 50,950 | 50,950 | 50,950 | 0 | water and Pipe system sanitation facilities at Cwero Growth Centre Designed | NA | **Fully implemented;** | **No M&E report** | **Quarter 4 report not availed.** |
759
- || 098183 Borehol e drilling and rehabilit ation | **YES** | -Drilling, casting and installation of 15 New bore holes the district | 290,67 1 | 290,671 | 290,671 | 0 | -15 New bore holes were Drilled, casted and Installed | 0 | **Fully implemented;** | **No M&E report** | **Quarter 4 report not availed.** |
760
- |^|^|^| \- Assessment and rehabilitation of 25 Bore holes | 160,73 0 | 160,730 | 160,730 | 0 | assessed rehabilitated boreholes and -25 | 0 | **Fully implemented;** | **No M&E report** | **Quarter 4 report not availed.** |
761
-
762
-
763
- 25
764
-
765
- ---
766
-
767
- ### Appendix II(a): Fleet Management
768
-
769
- | **WORKS** |<|<|<|<|<|<|<|<|
770
- |---|---|---|---|---|---|---|---|---|
771
- | S/n | **Reg. No.** | **Make** | **Model/Ye ar** | **Type** | **Engine Model** | **Engine No.** | **Chassis No.** | **Remarks** |
772
- | 1 | LG0001 -030 | CHANLIN G | 713 (2012) | Motor Grader | CUMIN- 6BTAS | 3y 40301 | 71300070 | Running |
773
- | 2 | LG0002 -030 | JAIFANG | CA3120P1K 2Y(2012) | Damper Truck | CA611/125 Z1A2 | 51934960 | CAC000906 | Pending Repair |
774
- | 3 | LG0003 -030 | JMC ISUZU | JMC (2012) | D/Cabin Pick-Up | JX1023DJB | JX49301 | 13CHP21324 | Pending Repair |
775
- | 4 | LG0003 -09 | KOMAT’S U | D53A-17 (1996) | Bull Dozer | 6D125E-2 | 745090 | 82678 | Under Repair |
776
- | 5 | LG0002 -09 | KOMAT’S U | GD511 A-1 (1992) | Motor Grader | GD95L | 64064 | G51A-10213 | Grounded |
777
- | 6 | UR0531 | U KOMAT’S | WA180 (1992) | Wheel Loader | GD95L | 93482 | I2672 | Running |
778
- | 8 | UR 0590 | MASSEY FUGAERS ON | MF 395 (1992) | Tractor | 142LT | 312339V4794 | 34269M6135 | To be boarded off |
779
- | 9 | S/N.CS4 31B | CATERPI LLAR | MW(1992) | Vibro Rollar | 1XF | 5711343A | 1XF-0075 | Pending Repair |
780
- | 10 | UG 2035S | HINO | JD8CF (2015) | Bore Hole Service Truck | JD8CF | JD8CF 43177 | JHDGT1JHP0X X18596 | Running |
781
- | 11 | UG 1830W | KOMAT’S U | GD6125(20 17) | Motor Grader | 6D125 | 6D125-117292 | KMTGDO28AH A001763 | Running |
782
- | 12 | UG 1929W | KOMAT’S U | WA250 (2017) | Wheel Loader | SAA6D102 FF-2 | 6D102- 26497752 | KMTWA0207H A72905 | Running |
783
- | 13 | UG 2425W | SAKAI | SV520D (2017) | Vibrator Roller |||| Running |
784
- | 14 | UG 2291W | FUSO | 6D16 (2017) | Water Bowser | 6D16- | A71562 | FM657F- A45427 | Running |
785
- | 15 | UG 2558 W | FUSO | 6D16(2017) | Truck Dumper | 6D16- | A71562 | FM657F- A45427 | Running |
786
- | 16 | UG 2307W | FUSO | 6D16 (2017) | Dumper Truck | 6D16- | A70605 | FM657F- A45226 | Running |
787
- | 17 | LG0146 -09 | YAMAHA | 9) DT125(200 | Field M/Cycle | 3HA | 3HA- | L125S- | To Be Boarded Off |
788
- | 19 | LG0094 -09 | NISSAN HARD BODY | QD32 (2004) | D/Cabin Pick-Up | QD32 | J84033 | ADJ84000D05 3804 | Grounded |
789
-
790
-
791
- ---
792
-
793
- | 20 | LG0134 -09 | NISSAN HARD BODY | QD32 (2004) | D/Cabin Pick-Up |||| Running |
794
- |---|---|---|---|---|---|---|---|---|
795
- | 21 | LG0008 -09 | ISUZU TRUCK | FTS (1992) | Drilling Rig | 6GB1 || JAHFTS- 12HP8600012 | Grounded To Be Boarded Off |
796
- | 24 | LG0004 -030 | JINCHEN G | JC125GY( | Sport M/Cycle | JC1566F ||| Grounded To Be Boarded Off |
797
- | 25 | LG0005 -030 | JINCHEN G | JC125GY | Sport M/Cycle | JC1566F ||| To Be Boarded Off |
798
- | 26 | LG0137 -09 | CHESS POOL EMPTIER | POOL TRUCK(200 0) ||| FC2WCA- 01467 || Grounded |
799
- | 27 | UFC 326C | YAMAHA | AG-125 (2020) | Field M/Cycle | E-121E | E121E-013133 | LBPCE26W0H -0013138 | Brand New |
800
- | S/N | REG. NO | MAKE | MODEL/YE AR | Type | ENGINE MODEL | ENGINE NO | CHASIS NO | Remark |
801
- | 1 | uek 300z | Honda | xl 125l | Sport | XL-125 | JD21E- 2223237 | LTMJD2194F5 304997 | Running |
802
- | 2 | UEK 305Z | HONDA | XL 125L | Sport | XL 125L | JD21E- 2222859 | LTMJD2193F5 304764 | Running |
803
- | 3 | UEK 306Z | HONDA | XL 125L | Sport | XL 125L | JD21E- 2223151 | LTMJD2195F5 304958 | Running |
804
- | 4 | UG5331 M | YAMAHA | DT 125 | Sport | DT 125 | 3TT-216066 | DEO2X- 093315 | Running |
805
- | 5 | UG 4761 M | YAMAHA | DT 125 | Sport | DT 125 | 3TT-215036 | DEO2X- 092287 | Running |
806
- | 6 | UG 5205 M | YAMAHA | DT 125 | Sport | DT 125 | 3TT-215916 | DEO2X- 093166 | Running |
807
- | 7 | UG 4691 M | YAMAHA | DT 125 | Sport | DT 125 | 3TT-21479 | DE02X- 092041 | Running |
808
- | 8 | UEF 135Y | Bajaj Boxer | BN100/150 | Sport | BN100/15 0 | DUZWFL44648 | MDZA18AZ9F WL36338 | Running |
809
- | 9 | UDX 590Z | HONDA | XL 125 | Sport | XL-125 || LTMJD195C52 02684 | Running |
810
- | 10 | UG 4400M | Yamaha | AG 100 | Field | AG-100 | 3HA-195719 | 3HA-195877 | Running |
811
- | 11 | LG 010- 030 | Yamaha | DT 125 | Sport | DT-125 | 3TT-178708 | DE02X- 055957 | Running |
812
- | 12 | UED 544G | Bajaj Boxer | BN100/150 | Sport | BN100/15 0 | MD2A18AZ2E WL | DUZWEL5048 0 | Running |
813
- | 13 | uek 300z | Honda | xl 125l | Sport | xl 125l | JD21E- 2223237 | LTMJD2194F5 304997 | Running |
814
-
815
-
816
- ---
817
-
818
- | 14 | UEK 305Z | HONDA | XL 125L | Sport | XL 125L | JD21E- 2222859 | LTMJD2193F5 304764 | Running |
819
- |---|---|---|---|---|---|---|---|---|
820
- | 15 | UEK 306Z | HONDA | XL 125L | Sport | XL 125L | JD21E- 2223151 | LTMJD2195F5 304958 | Running |
821
- | 16 | UDX 220 Z | HONDA | XL 125 | Sport | XL 125 | JDZ1E - 2010718 | LTMD2194C5 208041 | Running |
822
- | 17 | UDX 591 Z | HONDA | XL 125 | Sport | XL 125 ||| Running |
823
- | 18 | UDX 722Y | HONDA | XL 125 | Sport | XL 125 | SDH152FM1-4 | LTMJD2193C5 205261 | Running |
824
- | 19 | LG 0166-09 | Yamaha | AG 100 | Sport | AG 100 | 3HA-137592 | 3HA-137592 | Running |
825
- | 20 | UG 3889 M | SUSUKI | TF 125 | Field | TF 125 | TF125-145348 | TF125- 145015 | Running |
826
- | 21 | LG0141 -09 | YAMAHA | AG 100(2012) | Field | AG 100 | 3HA-158670 | 3HA-158906 | Running |
827
- | 22 | UBA728 Y | YAMAHA | DT125 (2008) | Sport | DT12Y | 3TT-165451 | DEO2X- 042704 | Running |
828
- | 23 | UBA729 Y | YAMAHA | DT-125 (2008) | Field | DT-125 | 3TT-16544 | DEO2X-2705 | Running |
829
- | 24 | UAC753 | HONDA | XL-125 | Sport | XL-125 | JC30E8 3500637 | 9C2JD20103R 500637 | Grounded |
830
- | 25 | UG 3430 M | HONDA | XL-125 | Sport | XL-125 | L125SE\*55892 5S || Running |
831
- | 26 | UG 3662M | HONDA | XL-125 | Sport | XL-125 | L125SE- 5594677 | LI25SE- 5740530 | Stolen |
832
- | 27 | UG 1733 M | YAMAHA- | DT 125 | Sport | DT 125 | 3TT-127457 | JYAD02X72A0 04701 | Stolen |
833
- | 28 | UG 2385 M | YAMAHA | AG 100 | Field | AG 100 | 3HA-117554 | 3HA-118159 | Running |
834
- | 29 | UG 2306 M | YAMAHA | AG 100 | Field | AG-100 | 3HA-117145 | 3HA-117288 | Running |
835
- | 30 | UG 2592 m | YAMAHA | bmk-l80 | Sport | BMK-180 | ite47sne\*0500 0214 | ny4yxae\*075t 000194 | Grounded |
836
- | 31 | UG 2466 M | YAMAHA | bmk- cy80 | Sport | BMK-CY8O | IPE47FME\*05 000451 | XLY4XAE\*065 T000431X | Grounded |
837
- | 34 | UG 3617 M | YAMAHA- | MBK-CY 80 | Sport | MBK-CY 80 | 4GC0600560 | 4GC059978 | Under REPAIR |
838
- | 36 | UG 2040 M | SUZUKI- | TF 125 | Field || TF125-145348 | TF-125 145015 | Grounded |
839
- | 37 | UG 0812M | YAMAHA- | AG 100 | Field || 3HA-075968 | 3HA- 0762E064 | Grounded |
840
- | 38 |||||||||
841
-
842
-
843
- ---
844
-
845
- | 39 | UG 3502 M | MARUTI | 2006 | Ambulanc e | GYPSY | 613BBN- 41500233761 S || To Be Boarded Off |
846
- |---|---|---|---|---|---|---|---|---|
847
- | 40 | UG 3511 M | MARUTI | 2006 | Ambulanc e | GYPSY ||| To Be Boarded Off |
848
- | 41 | UG 3550 M | Nissan | 2008 | D/ Cabin |||| To Be Boarded Off |
849
- | 42 | UG 0440 M | Ford Ranger | 2006 | D/ Cabin |||| To Be Boarded Off |
850
- | 43 | LG 0172-09 | Land cruiser | 2014 | Ambulanc e |||| Running |
851
- | 44 | UG 6490M | TOYOTA HILUX | 2019 | D/ Cabin || 2GD0761340 | AHTFB8CD80 3875541 | (Running ) |
852
- | 45 || YAMAHA | AG-125 (2020) | Field M/Cycle | E-121E | E121E | LBPCE26W0H | Brand New |
853
- | 46 || YAMAHA | AG-125 (2020) | Field M/Cycle | E-121E | E121E | LBPCE26W0H | Brand New |
854
- | S/N | REG. NO | MAKE | MODEL/YE AR | Type | ENGINE MODEL | ENGINE NO. | CHASS NO | Remarks |
855
- | 1 | UG- 0153G | TF125CC | 2008 | Field | TF-125 | TF-125- | TF-125- | To Be Boarded Off |
856
- | 2 | LG0139 -09 | TOYOTA | 2009 | Bonet Truck || IHZ-0585890 | JTEED- 71J70700305 8 | Grounded |
857
- | 4 | UG0241 Y | - | 2000 | Field | AG-100 | UGA66-102 | 4GC060072 | Grounded To Be Boarded Off |
858
- | 5 | LG0033 -030 | YAMAHA | - | Field | AG-100 | 3HA-159401 | 3HA-159746 | Grounded To Be Boarded Off |
859
- | 6 | LG0034 -030 | YAMAHA | - | Field || 3HA-145708 | 3HA-145462 | Grounded To Be Boarded Off |
860
- | 7 | UG2029 R | JAILING | 2008 | Sport | L-125CC | 156FM1\*2008 000 | LAAJKJG- 680000715 | Grounded To Be Boarded Off |
861
- | 8 | UG2072 R | JAILING | 2008 | Sport | L -125CC | 156FM1\*2008 603 | LAAJKJG- 80000629 | Grounded To Be Boarded Off |
862
- | 9 | UG1548 R | JAILING | 2008 | Sport | L-125CC | 156FM1\*2008 000716 | LAAJKJG- 680000830 | Grounded To Be Boarded Off |
863
- | 10 | UG0572 | H0NDA | XL/2010 | Sport | L125CC | JD21E- 2010634 | LTMJD2193C5 208130 | Running |
864
-
865
-
866
- ---
867
-
868
- | 11 | UG1549 R | JAILING | 2008 | Sp0rt | L-125CC | 156FM1\*2008 000595 | LAAJKJG- 780000802 | To Be Boarded Off |
869
- |---|---|---|---|---|---|---|---|---|
870
- | 12 | UG1274 R | JAILING | 2008 | Sport | L-125CC | 156FM1\*2008 000451 | LAAJKJG- 880000683 | To Be Boarded Off |
871
- | 13 | LG0021 -030 | YAMAHA | XTZ/2015 | Sport | L-25CC | E3N2E042786 | LBPE1790000 17854 | Running |
872
- | 14 | LG0023 -030 | YAMAHA | XTZ/2015 | Sport | L-125CC | E3N2E042854 | LBPKE179000 017792 | Running |
873
- | 15 | LG0029 -030 | YAMAHA | XTZ/2015 | Sport | L-125CC | E3N2E042566 | LBPKE179000 017846 | Running |
874
- | 16 | LG0031 -030 | YAMAHA | XTZ/2015 | Sport | L-125 CC | E3N2E042849 | LBPKE179000 017794 | Running |
875
- | 17 | LG0032 -030 | YAMAHA | XTZ/2015 | Sport | L-125CC | E3N2E042836 | LBPKE179000 017798 | Running |
876
- | 18 | LG0030 -030 | YAMAHA | XTZ/2015 | Sport | L-125CC | E3N2E042788 | LBPKE17900S 0017851 | Lost |
877
- | 19 | UG1006 Y | YAMAHA | XTZ/2018 | Sport | L-125CC | E3N2E-077857 | LBPKE179000 026539 | Running |
878
- | 20 | UG0876 Y | HONDA | CG/2017 | Sport | L-125CC | WH156FMI2 | LWDPCJ1F9G 1005108 | Running |
879
- | 21 | UG040Y | TOYOTA | HIACE | Toyota | 3L- | - | - | Head Quarter For Repair |
880
- | 22 | UG0740 Y | YAMAHA | XTZ/2017 | Sport || E3N2E064146 | LBPKE179000 022295 | Running |
881
- | 23 | UG0473 Z | FORD | -2011 | D/Cabin | T8963II || AFA1XXXMJ2T BE12088 | To Be Boarded Off |
882
- | 24 | UG0937 Z | TOYOTA HILUX | 2018 | D/Cabin ||| AHTKB3CD80 2624025 | Running (New |
883
- ||| PRODUC TION |||||||
884
- | S/N | REG. NO. | MAKE | MODEL/YE AR | Type | EGINE MODEL | ENGINE NO. | CHASS NO. | Remarks |
885
- | 1 | UG 2482A | YAMAHA | 2017 | Sport | XTZ-125 | E3N2E-056238 | LBPKE- 17900002105 9 | Running |
886
- | 2 | UG3279 R | YAMAHA | 2018 | Sport | XTZ-125 | E3N2E-067522 | LBPKE- 17900002362 1 | New |
887
-
888
-
889
- ---
890
-
891
- | 3 | UG3277 R | YAMAHA | 2018 | Sport | XTZ-125 | E3N2E-067393 | LBPKE- 17900002360 3 | New |
892
- |---|---|---|---|---|---|---|---|---|
893
- | 4 | UG3276 R | YAMAHA | 2018 | Sport | XTZ-125 | E3N2E-067499 | LBPKE- 17900002361 3 | New |
894
- | 5 | UG2485 A | YAMAHA | 2017 | Sport | XTZ-125 | E3N2E-056252 | LBPKE- 17900002106 8 | Running |
895
- | 6 | UG2484 A | YAMAHA | 2017 | Sport | XTZ-125 | E3N2E-056271 | LBPKE- 17900002106 2 | Running |
896
- | 7 | UG2381 A | YAMAHA | 2015 | Field M/C | AG-100 | 3HA-208739 | JYA3HA00002 09069 | Running |
897
- | 8 | UG0515 Z | HONDA XR | 2011 | Sport | XR-125 ||| Gronded |
898
- | 9 | UDX111 | YAMAHA | 2012 | Sport | DT-125 | 3TT-0201743 | DE02X- 0078994 | Running |
899
- | 10 | UDX169 | YAMAHA | 2012 | Sport | DT-125 | 3TT-0200873 | DE02X- 0078124 | Grounded |
900
- |^|^|^|^|^|^|^|^| To Be Boarded Off |
901
- | 11 | UDX135 Y | YAMAHA | 2012 | Sport | DT-125 | 3TT-0199570 | DE02X- 0076821 | Grounded |
902
- |^|^|^|^|^|^|^|^| To Be Boarded Off |
903
- | 12 | UG0521 Z | HONDA | 2011 | Sport | XR-125 | 6616801 | LTMJD19A5B5 2299562 | Grounded |
904
- |^|^|^|^|^|^|^|^| To Be Boarded Off |
905
- | 13 | UDX782 Z | YAHAMA | 2012 | Sport | DT-125 | 3TT-216689 | DE02X- 093990 | Running |
906
- | 14 | UG3093 R | MITSUBI SHI L200 | 2014 | D/Cabin | L 200 ||| Running |
907
- | 15 | UG0513 Z | HONDA | XR-125 (2012) | Sport | JC30E | 6616785 | LTMJDA19A8B 5229966 | Running |
908
- | 16 | UG0516 Z | HONDA | XR-125 (2012) | Sport | JC30E | 6616745 | LTMJD19AXB5 229984 | Running |
909
- | 17 | UG 0017Z | LAND ROVER | 2000 | Bonet Truck |||| Grounded |
910
- |^|^|^|^|^|^|^|^| To Be Boarded Off |
911
- || LG3253 -030 | ISUZU | 2016 | D/Cabin |||||
912
- | 21 | UG2785 | TOYOTA | D/CABIN | D/Cabin | GUN125R | 2GD0443797 | AHTFB8CD60 | Brand New |
913
-
914
-
915
- ---
916
-
917
- || A | HILUX ||||| 3871536 ||
918
- |---|---|---|---|---|---|---|---|---|
919
- || UEV498 K | YAMAHA || Sport || E3N2E-081584 | 28604 LBKEI790000 | Brand New (Omara Ep.) |
920
- | 20 |^|^|^|^|^|^|^|^|
921
- || UEV284 K | YAMAHA | 2017 | Sport || E3N2E-080207 | 28098 LBKEI790000 | Brand New (Anywar G.) |
922
- | 21 |^|^|^|^|^|^|^|^|
923
- || UEV510 K | YAMAHA | 2017 | Sport || E3N2E-081668 | 28703 LBKEI790000 | Brand New (Lawach J.) |
924
- | 22 |^|^|^|^|^|^|^|^|
925
- | 23 | UEV335 K | YAMAHA | 2017 | Sport || E3N2E-079768 | 27835 LBKEI790000 | Brand New (Lanek Jp.) |
926
- | 24 | UEV367 K | YAMAHA | 2017 | Sport || E3N2E-079761 | 27800 LBKEI790000 | Brand New Komakech J.) |
927
- | 25 | UG2658 A | YAMAHA | 2017 | Sport || E3N2E-078189 | 26801 LBKEI790000 | Brand New (Opiyo A.) |
928
- | 26 | UEV89O K | YAMAHA | 2017 | Sport || E3N2E-080023 | 27902 LBKEI790000 | Brand New (Acaye A.) |
929
- | 27 | UEV892 K | YAMAHA | 2017 | Sport || E3N2E-080089 | 27854 LBKEI790000 | Brand New (Otema S.) |
930
- || REG. NO. | MAKE | MODEL/YE AR | Type | EGINE MODEL | ENGINE NO. | CHASS NO. | Remarks |
931
- | S/N |^|^|^|^|^|^|^|^|
932
- | 1 | LG0138 -09 | TOYOTA | 2008 | D/Cabin | 2KD- | 2KD7491321 | AHTFR22G40 60 | Running |
933
- | 2 | UG0393 E | IZUSU TFS | 2003 | D/Cabin | 4AJ | 654122 | JAATFS544H W-7102203 | To Be Boarded Off |
934
- | 3 | UG1062 E | MISUBIS HI | 1994 | D/Cabin || 4056-HN7447 | VSM21-4625 | To Be Boarded Off |
935
- | 6 | UG1995 E | HONDA | 2009 | Sport | XL-125 | L125E- 5603194 | L125S- 5749040 | To Be Boarded Off |
936
- | 7 | UG3839 R | JAILING | 2009 | Sport | JL156FML | -09A345501 | LAAAJKJG- 190001934 | To Be Boarded Off |
937
- | 8 | UG2840 R | JAILING | 2009 | Sport | JL156FML | -09A345501 | LAAAJKJG- 190001935 | To Be Boarded Off |
938
- | 9 | LG0043 -030 | ISUZU DEMAX | 2016 | D/Cabin | JR5G | 4597423 | RH4CDMM374 9-12A17 | Running |
939
- | 10 |||||||||
940
- || REG. NO. | MAKE | MODEL/YE AR | Type | EGINE MODEL | ENGINE NO. | CHASS NO. | Remarks |
941
- | S/N |||||||||
942
- | 1 | LG0020 -030 | TOYOTA | 2015 | D/Cabin | 3L | C-21BA59 | AHTFR22E706 100974 | Running |
943
- | 2 | LG0008 -030 | FORD RANGER | 2014 | D/Cabin |||| Under Repair |
944
-
945
-
946
- ---
947
-
948
- | 3 | LG0006 -030 | YAMAHA | 2014 | Sport | DT-125 | 3TT- || Running |
949
- |---|---|---|---|---|---|---|---|---|
950
- | 4 | UG3159 R | MITSUBI SHI | 2015 | D/Cabin |||| Running |
951
- | 5 | LG0017 -030 | YAMAHA | 2014 | Sport | DT-125 | 3TT-208280 || Running |
952
- | 6 | UDX082 Y | YAMAHA | 2012 | Sport | DT-125 ||| Running |
953
- | 7 | LG0007 -030 | YAMAHA | 2014 | Sport | DT-125 ||| Omoro District |
954
- | 8 | LG0009 -030 | YAMAHA | 2014 | Sport | DT-125 ||| Running |
955
- | 9 | LG0018 -030 | YAMAHA | 2014 | Sport | DT-125 ||| Stolen |
956
- | 10 | LGOO1 9-030 | YAMAHA | 2014 | Sport | DT-125 ||| Court Bailiff |
957
- | 11 | UG1239 R | FORD RANGER | 2009 | D/Cabin | 2KD | -7495631 | AHTFR22G80 60 | Poorly Running |
958
- | 12 | LG0039 -030 | YAMAHA | 2016 | Sport | YBR-125 ||| Running |
959
- | 13 | LG0038 -030 | YAMAHA | 2016 | Sport | YBR-125 ||| Running |
960
- | 14 | LG0037 -030 | YAMAHA | 2016 | Sport | YBR-125 ||| Running |
961
- | 15 | LG0036 -030 | YAMAHA | 2016 | Sport | YBR-125 ||| Running |
962
- | 16 | LG151- 09 | YAMAHA YBR | 2009 | Ybr-125 | YBR-125 | E3D7E-017675 | LBPKE- 390027769 | To Be Boarded Off |
963
- | 17 | UDF 754A | HONDA XL-125 | 2008 | Sport | XL125 | 5591853 | 5737722 | Running |
964
- | 18 | LG0049 -030 | SIMBER - 156 | 2019 | Sport | 156 FMI | 2K090848 | LB412Y53K00 90848 | New ( Paicho Sub. Cty) |
965
- | 19 | LG0136 -09 | TOYOTA | 2008 | D/Cabin | 2KD- ||| Planning Unit |
966
- ||||||||||
967
- || REG. NO. | MAKE | MODEL/YE AR | Type | EGINE MODEL | ENGINE NO. | CHASS NO. | Remarks |
968
- | S/N |||||||||
969
-
970
-
971
- ---
972
-
973
- | 1 | UG 1830W | KOMAT’S U | GD6125(20 17) | Motor Grader | 6D125 | 6D125-117292 | KMTGDO28AH A001763 | Running |
974
- |---|---|---|---|---|---|---|---|---|
975
- | 2 | UG 1929W | KOMAT’S U | WA250 (2017) | Wheel Loader | SAA6D102 FF-2 | 6D102- 26497752 | KMTWA0207H A72905 | Running |
976
- ||||||||||
977
- | 3 | UG 2425W | SAKAI | SV520D(20 17) | Vibrator Roller |||| Running |
978
- | 4 | UG 2291W | FUSO | 6D16 (2017) | Water Bowser | 6D16- | A71562 | FM657F- A45427 | Running |
979
- | 5 | UG 2558 W | FUSO | 6D16(2017) | Truck Dumper | 6D16- | A71562 | FM657F- A45427 | Running |
980
- | 6 | UG 2307W | FUSO | 6D16 (2017) | Dumper Truck | 6D16- | A70605 | FM657F- A45226 | Running |
981
-
982
-
983
- ### Appendix II(b): Summary of Sale: Motorcycles
984
-
985
- | S/N | Asset | No Of Assets | Costs |
986
- |---|---|---|---|
987
- | 1 | Motorcycles | 04 | 400.000 |
988
- | 2 | Motor vehicles | 16 | 84,027.340 |
989
- | 3 | Assorted scraps | - | 1,500,000 |
990
- || Grand total || 85,927,340 |
991
-
992
-
993
- | Lot No | Asset | No Of Assets | Costs |
994
- |---|---|---|---|
995
- | 1 | BMK motorcycle | UG 2868 M | 100,000 |
996
- | 2 | JIALING Motorcycle | UG 3300 M | 50,000 |
997
- | 3 | BMK-L80 Motorcycle | UG 2869 M | 100,000 |
998
- | 4 | YAMAHA Motorcycle | UG 3617 M | 150,000 |
999
- || **TOTAL** || **400,000** |
1000
-
1001
-
1002
- | Lot No | Asset | No Of Assets | Costs |
1003
- |---|---|---|---|
1004
- | 6 | Toyota Land Cruiser | LG 1492 M | 7,100,000 |
1005
- | 7 | Toyota Land Cruiser | LG 1064-09 | 8,000,000 |
1006
- | 8 | Pick –up Nissan Hard Body Double Cabin | LG 0129-09 | 7,175,600 |
1007
- | 9 | Isuzu Tipper Truck | UR O531 | 26,000,000 |
1008
- | 10 | Suzuki Samurai | 398 UZU | 2,000,000 |
1009
- | 11 | Pick –up Nissan Hard Body Double Cabin | UAJ 083 Z | 2,000,000 |
1010
-
1011
-
1012
- ---
1013
-
1014
- | 12 | Suzuki KB Double Cabin Pick-up || 700,000 |
1015
- |---|---|---|---|
1016
- | 13 | Toyota Hilux | LG 0069-09 | 860,000 |
1017
- | 14 | Toyota Hilux || 1,000,000 |
1018
- | 15 | Suzuki Station Wagon | LG 0017-09 | 1,050,000 |
1019
- | 16 | Toyota Hilux Double Cabin Pick- up | LG 0068-09 | 3,110,000 |
1020
- | 17 | Toyota Hilux Double Cabin Pick up | LG 065-09 | 9,950,000 |
1021
- | 18 | Tipper Truck Zeifang | LG 0063-09 | 5,627,740 |
1022
- | 19 | Tipper Truck Zeifang | LG 0064-09 | 5,234,000 |
1023
- | 20 | Bedford Truck || 3,000,000 |
1024
- | 21 | Bedford flat bed | UA 0180 | 1,220,000 |
1025
- | 22 | Assorted scraps || 1,500,000 |
1026
- || **Sub-Total** || **85,527,340** |
1027
- |||| **400,000** |
1028
- || **Grand Total** || **85,927,340** |
1029
-
1030
-
1031
- ### Appendix III: Procurements- COVID-19
1032
-
1033
- | **Invoice Number** | **Paymen t Date** | **Suppli er** | **Description /Purpose** | **EFT / Check Number** | **Invoice Amount** | **Distribution Amount** | **Remarks** |
1034
- |---|---|---|---|---|---|---|---|
1035
- | HEL/57/06 /20 | 18/06/20 20 | Elvis Okello Roman son | Payment to facilitate e- meetings for COVID-19. | 30057044 | 2,500,00 0 | 2,500,000 | Procurement approved by contracts committee, Stores records posted. |
1036
- | HEL/85/06 /20 | 25/06/20 20 | Onyayi Willia m Who | Payment for purchase of required items for institutional quarantine centre for COVID-19 under COVID-19 funding. | 30515430 | 4,000,00 0 | 4,000,000 | Procurement approved by contracts committee, Stores records posted. |
1037
- | HEL/86/06 /20 | 25/06/20 20 | Aber J enifer | Payment for logistics for COVID-19 activities under COVID-19 funding | 30515432 | 4,000,00 0 | 4,000,000 | Procurement approved by contracts committee, Stores records posted. |
1038
-
1039
-
1040
- ---
1041
-
1042
- | HEL/85/06 /20 | 25/06/20 20 | Elvis Okello Roman son | Payment for purchase of required items for institutional quarantine centre for COVID-19 under COVID-19 funding. | 30515452 | 1,000,00 0 | 1,000,000 | Procurement approved by contracts committee, Stores records posted. |
1043
- |---|---|---|---|---|---|---|---|
1044
- | HEL/86/06 /20 | 25/06/20 20 | Muloya Felix | Payment for logistics for COVID-19 activities under COVID-19 funding | 30515403 | 4,215,00 0 | 4,215,000 | Procurement approved by contracts committee, Stores records posted. |
1045
- | HEL/86/06 /20 | 25/06/20 20 | Anena Grace | Payment for logistics for COVID-19 activities under COVID-19 funding | 30515442 | 4,000,00 0 | 4,000,000 | Procurement approved by contracts committee, Stores records posted. |
1046
- | HEL/85/06 /20 | 25/06/20 20 | Tabu Cosma s | Payment for purchase of required items for institutional quarantine centre for COVID-19 under COVID-19 funding. | 30515443 | 4,000,00 0 | 4,000,000 | Procurement approved by contracts committee, Stores records posted.. |
1047
- | **Total** |||||| **23,715,000** ||
1048
-
1049
-
1050
- | **S/N** | **Item Descriptions** | **Unit of** | **Quantity** | **Quantity** | **Unit Price** | **Value (UGX)** |
1051
- |---|---|---|---|---|---|---|
1052
- |^|^| Measure | Received | Issued |^|^|
1053
- | A | FOOD ITEMS ||||||
1054
- | 1 | Posho-Maize Flour | Kgs | 117,905 | 117,905 | 2,200 | 259,391,000 |
1055
- | 2 | Beans-kg | Kgs | 54,000 | 54,000 | 3,500 | 189,000,000 |
1056
- | 3 | spiced carton rice 36pkt per | Boxes | 75 | 75 | 3,200 | 240,000 |
1057
- | 4 | Rice-kg | Kgs | 3,637 | 3,637 | 3,000 | 10,911,000 |
1058
- | 5 | Corn Soya Blend-kgs | Kgs | 1,782 | 1,782 | 3,200 | 5,702,400 |
1059
-
1060
-
1061
- ---
1062
-
1063
- | 6 | Cooking Oil-Litre | Liters | 1,834 | 874 | 7,000 | 12,838,000 |
1064
- |---|---|---|---|---|---|---|
1065
- | 7 | Table salt -500g | Kgs | 2,109 | 2,109 | 600 | 1,265,400 |
1066
- | 8 | Baking Flour-Kg | Kgs | 228 | 228 | 5,000 | 1,140,000 |
1067
- | 9 | Baking Powder-carton | Ctns | 4 | 4 | 500 | 2,000 |
1068
- | 10 | Eggs-1 piece | Pcs | 192 | 192 | 9,000 | 1,728,000 |
1069
- | 11 | Silver Fish-Lacede-small fish-kg | Pcs | 115 | 115 | 3,000 | 345,000 |
1070
- | 12 | Sugar | Kgs | 3,182 | 3,182 | 4,000 | 12,728,000 |
1071
- | B | DISINFECTANTS ||||| 0 |
1072
- | 1 | Laundry Bar Soaps-Blue (600-800g) | 1 | 10,315 | 9,115 | 2,000 | 20,630,000 |
1073
- | 2 | liquid soap in liters | Jerrycans | 416 | 354 | 14,219 | 5,915,200 |
1074
- | 3 | Alcohol-based Hand Sanitizer-20litres | Ltrs | 14 | 10 | 122,000 | 1,708,000 |
1075
- | 4 | Alcohol-based Hand Sanitizer- bottles | Bottles | 641 | 613 | 14,000 | 8,974,000 |
1076
- | 5 | Bathing Soap-Skin Guard- 55g | Cartons | 2 | 2 | 2,000 | 4,000 |
1077
- | 6 | Alcohol Swaps/Pads- 100piece | Piece | 40 | 40 | 3,500 | 140,000 |
1078
- | 7 | Dettol Liquid Soap-250 ml | 250ml | 4 | 4 | 2,000 | 8,000 |
1079
- | 8 | Hand Wash-moisturizer with Dispenser | 500 ml | 50 | 6 | 2,000 | 100,000 |
1080
- | 9 | Disinfectant-no description -Liters | Ltrs | 140 | 125 | 20,000 | 2,800,000 |
1081
- | 10 | Sodium Hypochlorite 3.5% Sltion | 750 ml | 666 | 666 | 10,000 | 6,660,000 |
1082
- | 11 | Sodium 3.5% Hypochlorite | 250 ml | 108 | 108 | 5,500 | 594,000 |
1083
- | 12 | Sodium Hypochlorite 6% Solution | 5ltrs | 19 | 19 | 65,000 | 1,235,000 |
1084
- | C | MEDICAL EQUIPMENTS ||||| 0 |
1085
- | 1 | Infrared Digital Thermometer- | Pcs | 52 | 47 | 650,000 | 33,800,000 |
1086
- | 2 | Hand washing With Stands And Cans Facility | Set | 518 | 417 | 35,000 | 18,130,000 |
1087
- | 3 | SAMPLE Carriers | Pcs | 12 | 6 | 55,000 | 660,000 |
1088
- | 4 | Bottle Sprayer-1 Liter | Pcs | 210 | 208 | 6,000 | 1,260,000 |
1089
- | 5 | Small Radio-Leotec | Pcs | 350 | 350 | 20,000 | 7,000,000 |
1090
- | 6 | Basin-20ltr | Pcs | 50 | 50 | 5,000 | 250,000 |
1091
- | 7 | Jerry Can-5litres | Pcs | 1,007 | 1,007 | 8,000 | 8,056,000 |
1092
- | 8 | Bathing Bucket Plastic-10 Liters | Pcs | 20 | 20 | 5,000 | 100,000 |
1093
- | 9 | Sprayer-Manuel -16 Liters | Pcs | 4 | 4 | 45,000 | 180,000 |
1094
- | 10 | Dust Bin 240'950 Ltr) | Pcs | 10 | 4 | 14,000 | 140,000 |
1095
- | 11 | Sharp 8ts (7.24) Container-Plastic | Pcs | 7 | - | 5,000 | 35,000 |
1096
- | 12 | Mega Phones | Pcs | 44 | 44 | 75,000 | 3,300,000 |
1097
- | D | Personal Equipments Protective ||||| 0 |
1098
- | 1 | Inspection Piece Glove-100 | Pcs | 600 | 47 | 1,000 | 600,000 |
1099
- | 2 | Safety Goggle | Pcs | 1,007 | 769 | 10,000 | 10,070,000 |
1100
- | 3 | Aprons Disposables | Pcs | 827 | 455 | 5,000 | 4,135,000 |
1101
-
1102
-
1103
- ---
1104
-
1105
- | 4 | Face Shield-Disposable Protective | Pcs | 1,048 | 76 | 5,000 | 5,240,000 |
1106
- |---|---|---|---|---|---|---|
1107
- | 5 | Surgical Glove-Latex 7 1/2 =100 Pieces | Pcs | 25 | 25 | 140,000 | 3,500,000 |
1108
- | 6 | Examination Gloves- Medium | Pcs | 356 | 287 | 2,000 | 712,000 |
1109
- | 7 | Heavy Duty Gloves-1 Pair | Pcs | 50 | 15 | 5,200 | 260,000 |
1110
- | 8 | Surgical Masks | Pcs | 57,530 | 56,500 | 500 | 28,765,000 |
1111
- | 9 | Respirator N95 | Pcs | 570 | 490 | 2,200 | 1,254,000 |
1112
- | 10 | Face Mask Ffp 1piece | Pcs | 200 | 200 | 2,200 | 440,000 |
1113
- | 11 | Cloth Masks-Ug | Pcs | 259,493 | 252,113 | 1,000 | 259,493,000 |
1114
- | 12 | Theatre Gown-Disposable 1 Piece | Pcs | 182 | 167 | 20,000 | 3,640,000 |
1115
- | 13 | Coverall-Disposable Piece 1 | Pcs | 247 | 37 | 20,000 | 4,940,000 |
1116
- | 15 | Suit Re-Usable - 1 Pices | Pcs | 40 | 40 | 20,000 | 800,000 |
1117
- | 16 | Ebola Pvc Boots-1 Pair | Pcs | 52 | 29 | 4,000 | 208,000 |
1118
- | E | Bedding Materials | Pcs |||| 0 |
1119
- | 1 | Blanket 4'x 6' 1 Piece | Pcs | 60 | 60 || 2,100,000 |
1120
- | 2 | Bed Sheet 4'x 6' 1 Piece | Pcs | 80 | 80 | 20,000 | 1,600,000 |
1121
- | 3 | Mattress 3 and 4 Inch | Pcs | 140 | 140 | 85,000 | 11,900,000 |
1122
- | 4 | Motorcycle -Honda Dt | No | 2 | 2 | 11,000,000 | 22,000,000 |
1123
- | 5 | Fuel | Ltrs | 1,437.84 || 3,700 | 5,320,000 |
1124
- || **TOTAL** ||||| **983,947,000** |
1125
-
1126
-
1127
- ### Appendix V: Under Staffing
1128
-
1129
- | **APPROVED STAFF ESTABLISHMENT FOR GULU DISTRICT LOCAL GOVERNMENT** |<|<|<|<|
1130
- |---|---|---|---|---|
1131
- || **Job Title** | **Approved** | **Filled** | **Vacant** |
1132
- || Officer Of The Chief Administrative Officer | 3 | 2 | 1 |
1133
- || Administration Department | 29 | 26 | 3 |
1134
- || Finance Department | 14 | 12 | 2 |
1135
- || Planning Department | 4 | 1 | 3 |
1136
- || Works Department | 18 | 16 | 2 |
1137
- || Education Department | 7 | 6 | 1 |
1138
- || Community Based Services Department | 8 | 7 | 1 |
1139
- || Gulu Juvenile Centre/Remand Home | 12 | 3 | 9 |
1140
- || Natural Resources Department | 9 | 7 | 2 |
1141
- || Production Department | 16 | 7 | 9 |
1142
- || Trade, Commerce, Industry and Local Economic Development Department | 6 | 2 | 4 |
1143
- || Health Services Department | 10 | 8 | 2 |
1144
- ||| **136** | **97** | **39** |
1145
- || **Approved Staff Establishment For Sub County Gulu District Local Government** ||||
1146
- || **Job Title** | **Approved** | **Filled** | **Vacant** |
1147
-
1148
-
1149
- ---
1150
-
1151
- | 1 | Sub County Chief /SAS | 6 | 6 | 0 |
1152
- |---|---|---|---|---|
1153
- | 2 | Veterinary Officer | 6 | 3 | 3 |
1154
- | 3 | Agricultural Officer | 6 | 6 | 0 |
1155
- | 4 | Fisheries Officer | 6 | 0 | 6 |
1156
- | 5 | Community Development Officer | 6 | 6 | 0 |
1157
- | 6 | Assistant Animal Husbandry Officer | 6 | 1 | 5 |
1158
- | 7 | Assistant Agricultural Officer | 6 | 0 | 6 |
1159
- | 8 | Assistant Fisheries Development Officer | 3 | 1 | 2 |
1160
- | 9 | Assistant Entomological Officer | 3 | 2 | 1 |
1161
- | 10 | Senior Accounts Assistant | 6 | 6 | 0 |
1162
- | 11 | Accounts Assistant | 6 | 6 | 0 |
1163
- | 12 | Parish Chief | 25 | 25 | 0 |
1164
- | 14 | Office Typist | 6 | 0 | 6 |
1165
- | 15 | Office Attendant | 6 | 0 | 6 |
1166
- || **Sub-Total** | **97** | **62** | **35** |
1167
- || **GRAND TOTAL** | **233** | **159** | **74** |
1168
- || **PERCENTAGE** | **100%** | **68%** | **32%** |
1169
-
1170
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
reports/Gulu DLG Report of Auditor General 2020/Gulu DLG Report of Auditor General 2020.pdf DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6dbb24b1b355ae9eb2a53864a6a990aa839fffde29ce2d79ed61d50ebb50903c
3
- size 1736098
 
 
 
 
reports/Gulu DLG Report of Auditor General 2020/Gulu DLG Report of Auditor General 2020.txt DELETED
@@ -1,1496 +0,0 @@
1
- OFFICE OF THE AUDITOR GENERAL THE REPUBLIC OF UGANDA
2
-
3
- REPORT OF THE AUDITOR GENERAL
4
-
5
- ON THE FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT FOR THE YEAR ENDED 30 TH JUNE, 2020
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
- TABLE OF CONTENTS
18
-
19
- Page
20
-
21
- Opinion - 1
22
- Basis for Opinion - 1
23
- Key Audit Matters - 1
24
- 1.0 Implementation of the approved budget - 1
25
- 2.0 Management of Covid-19 interventions - 8
26
- Emphasis of Matter - 11
27
- 3.0 Effects of the creation of Gulu City on the Assets and liabilities of Gulu District Local
28
- Government - 11
29
- 4.0 Accumulated Payables - 11
30
- Other Information - 11
31
- Management’s Responsibility for the Financial Statements - 12
32
- Auditor’s Responsibility - 12
33
- Other Reporting Responsibilities - 13
34
- Report on the Audit of Compliance with Legislation - 13
35
- 5.0 Management of Government-Vehicles (Fleet Management) - 13
36
- Status of Basic Medical Equipment in HCIV 17 6.0
37
- Inadequate medical equipment at Awach Health Centre IV 17 7.0
38
- 8.0 Data on Mothers Delivery - 17
39
- 9.0 Follow up on UGIFT projects - 18
40
- 10.0 Under staffing - 20
41
- Appendix I: Evaluation of the achievement of planned outputs - 22
42
- Appendix II(a): Fleet Management - 26
43
- Appendix III: Procurements- COVID-19 - 35
44
- Appendix IV: Schedule of Items Received Under Covid 19 - 36
45
- Appendix V: Under Staffing - 38
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
- LIST OF ACRONYMS
58
-
59
- Acronym Meaning
60
- BOU Bank of Uganda
61
- CoC Certificates of Compliance
62
- CWC Community Watershed Committee
63
- GoU Government of Uganda
64
- IESBA International Ethics Standards Board for Accountants
65
- IFMS Integrated Financial Management System
66
- INTOSAI International Organisation of Supreme Audit Institutions
67
- ISSAIs International Standards of Supreme Audit Institutions
68
- LGFAM Local Government Financial and Accounting Manual
69
- MoFPED Ministry of Finance, Planning and Economic Development
70
- NDP National Development Plan
71
- NPA National Planning Authority
72
- NUSAF Northern Uganda Social Action Fund
73
- PBS Performance Budgeting System
74
- PFMA Public Finance Management Act
75
- TSSA Treasury Sub Single Account
76
- TSA Treasury Single Account
77
- UgIFT Uganda Intergovernmental Fiscal Transfers Program for Results
78
- UGX Uganda Shillings
79
- URF Uganda Road Fund
80
- UPE Universal Primary Education
81
- USE Universal Secondary Education
82
- MoLG Ministry of Local Government
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
- REPORT OF THE AUDITOR GENERAL
98
-
99
- ON THE FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT FOR THE YEAR ENDED 30 TH JUNE, 2020
100
-
101
- THE RT. HON. SPEAKER OF PARLIAMENT
102
-
103
- Opinion
104
-
105
- I have audited the accompanying Financial Statements of Gulu District Local Government,
106
-
107
- which comprise the Statement of Financial Position as of 30 th June 2020, the Statement of
108
-
109
- Financial Performance, Statement of Changes in Equity, Statement of Cash Flows, together with other accompanying statements for the year then ended, and notes to the financial statements, including a summary of significant accounting policies.
110
-
111
- In my opinion, the Financial Statements of Gulu District Local Government for the year ended 30 th June 2020 are prepared, in all material respects, in accordance with section 51 of the Public Finance Management Act (PFMA), 2015 as amended and the Financial Reporting
112
-
113
- Guide, 2018.
114
-
115
- Basis for Opinion
116
-
117
- I conducted my audit in accordance with International Standards of Supreme Audit Institutions (ISSAIs). My responsibilities under those standards are further described in the
118
-
119
- Auditor’s Responsibilities for the audit of the Financial Statements section of my report. I am independent of the District in accordance with the Constitution of the Republic of Uganda (1995) as amended, the National Audit Act, 2008, the International Organisation of Supreme
120
-
121
- Audit Institutions (INTOSAI) Code of Ethics, the International Ethics Standards Board for
122
-
123
- Accountants’ Code of Ethics for Professional Accountants (IESBA Code) and other independence requirements applicable to performing audits of Financial Statements in Uganda. I have fulfilled my ethical responsibilities in accordance with the other requirements
124
-
125
- and the IESBA Code. I believe that the audit evidence I have obtained is sufficient and appropriate to provide a basis for my opinion.
126
-
127
- Key Audit Matters
128
-
129
- Key audit matters are those matters that, in my professional judgment, were of most significance in my audit of the Financial Statements of the current period. These matters
130
-
131
- were addressed in the context of my audit of the Financial Statements as a whole, and in
132
-
133
-
134
-
135
-
136
-
137
-
138
-
139
-
140
-
141
-
142
-
143
- partial and non-implementation of outputs, diversion of funds and challenges in budget monitoring and reporting of performance.
144
-
145
- A review of district’s approved work plans and budgets revealed that Gulu District had
146
-
147
- an approved budget of UGX.42.4Bn, out of which UGX.30.1Bn was warranted/ availed by the end of the financial year. The total expenditure for the year was 27.3Bn out of
148
-
149
- which UGX.18.04Bn 1 was spent on non-service delivery activities, such as employee
150
-
151
- costs and transfers to other units (sub-counties, schools and health centres), implying
152
-
153
- that only UGX.9.3Bn was available for implementation of service delivery outputs.
154
-
155
- The UGX.9.3Bn that remained was applied for the implementation of one hundred and seventy three (173) outputs from which I sampled eleven (11) outputs with a budget of UGX.2.99Bn and expenditure of UGX.1.72Bn representing 18.5% of the total
156
-
157
- resources spent on implementation of activities as shown in the table below.
158
-
159
- Monetary Value (UGX.) Bn Number of outputs
160
- Total Exp Amount spent on direct service delivery Total exp. audited % audited Number of direct service delivery outputs No. of outputs sampled for audit %outputs audited
161
- 27.3 9.3 1.72 18.5 173 11 6.4
162
-
163
-
164
-
165
-
166
- The Key outputs/ activities implemented by the entity during the year were;
167
-
168
- SN Key Out-puts/Activities Amount Spent UGX % of amount spent to total of expenditure for key items implemented.
169
- 1 Classroom construction and rehabilitation
170
- 1a Construction of 1 block of 2 classrooms at Panykworo 75,000,000 4
171
- 1b Construction of 1 block of 4 units teachers` house 94,616,000 6
172
- 1c Partial construction of 1 block of 2 classrooms at Kitenywalo PS 31,484,000 2
173
- 2 Partial construction of standard OPD at Lapeta HC II phase 1 64,421,000 4
174
- 3 Construction of 1 block of 4 stances drainable latrine at Patiko HC III 18,419,000 1
175
- 4 Road construction and rehabilitation 0
176
- 4a Rehabilitation of 3.3 km Gulu PTC- Kidere road 5,152,000 0.3
177
- 4b Low cost seal of Laroo- Pageya road 75,000,000 4
178
- 5 Maintenance of District roads 0
179
- 5a Routine manual maintenance 89,652,000 5
180
- 5b Routine mechanised maintenance 167,569,295 10
181
- 5c Emergency works on Wii- Apaya stream 54,239,365 3
182
- 6 Mechanical imprest 57,164,000 3
183
- 7 Construction of 15 deep boreholes 286,463,440 17
184
- 8 Supply of hand pump spare parts for borehole rehabilitation 160,729,700 9
185
- 9 Design of pipe water system and sanitation facilities at Cwero Growth Centre 50,950,000 3
186
- 10 Palaro Seed Secondary school construction. 481,690,000 28
187
- 11 Renovation of store 7,590,000 0.4
188
- Total 1,720,139,800 100
189
-
190
-
191
-
192
-
193
-
194
-
195
-
196
-
197
-
198
-
199
-
200
-
201
-
202
-
203
- The outbreak of the Covid Pandemic affected the implementation of the 2019/20 budget for a number of entities especially the implementation of activities in the last half of the financial year. A number of activities were not implemented as a result of budget cuts and the lockdown measures instituted to control the spread of the pandemic.
204
-
205
- No Observation Recommendation
206
- 1.1 Implementation of the strategic plan Government has been implementing the NDP II, which ended at the end of financial year 2019/2020. In line with the NDP, the District had its strategic plan approved for the period 2015-2020; this plan set out both the long term and short term targets to be achieved.current audit year was the 5 th year /the last year of implementation of the strategic plan, and it is anticipated that all the projected targets would have been accomplished.noted that at the time of audit (June 2019/20), out of 6 strategic targets, the district had fully achieved two (2) targets and partially attained four (4) targets, as shown in the table below;extent of achievement of 2015/16-2019/2020 strategic plan by 2019/2020 No Level of performance by of 2019/2020the endNo of strategic goals/ objectivestotal of% of number strategic objectives 1 2 32 4 0 633.3 66.7 0 100Fully achieved Partially achieved Not achieved Total Source: OAG analysis The targets that were partially achieved were 1.Completion of Palaro Seed Secondary School. 2. Maintenance of district roads. 3. Emergency works Wii-Apaya Stream 4. Manual maintenance of 378.3km of District Roads The Accounting Officer attributed the underperformance to general reduction in the development sector grants under Education, Health and Water.ITheThe advised the Accounting Officer to engage MoFPED and have the unimplemented activities rolled over for implementation in the subsequent periods.I
207
-
208
-
209
-
210
-
211
-
212
-
213
- 1.2 Revenue Performance 1.2.1 Local Revenue (LR) Performance I reviewed the approved Local revenue estimates for the financial year 2019/2020 and noted that the District budgeted to collect UGX.1,294,588,000 during the year but collected UGX.1,259,040,473 representing (97%) performance. of UGX.35,547,527(3%) were recorded in Local Hotel Tax, interest from private entities and Park Fees. Revenue shortfalls affected the implementation of planned activities.The shortfalls in Local Revenue collectionsAccounting Officer attributed the revenue underperformance to outbreak of the Covid-19 pandemic.The revisenoted the response and advised the Accounting Officer to always the budget with approval of council to reflect such unforeseen circumstance.I
214
-
215
-
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
-
226
-
227
-
228
- 1.2.2 Performance of GoU receipts-(Transfers received from the I commended the Consolidated Fund)
229
-
230
- Government for the The District budgeted to receive UGX.27,671,220,364 (revised) as grants good performance from the Treasury. I noted that, UGX.26,048,487,102 was warranted/ on
231
-
232
- Government
233
-
234
- received representing 94% performance. .
235
-
236
- Grants.
237
-
238
- 1.2.3 Transfers from other Government Units/Other Government Transfers I advised the The entity budgeted to receive UGX.2,200,739,000 as transfers from other Accounting Officer to Government Units. However, only UGX.1,794,190,545 (82%) was received as engage MoFPED and shown in the table below.
239
-
240
- Table showing performance of revenue transfers from other government agencies
241
-
242
- have the unimplemented activities rolled over S/n Revenue Source Approved Total Variance %Performa for implementation Budget” Receipts nce in the subsequent (UGX) (UGX) (UGX) periods. ”000” ”000” ”000” 1 NUSAF 600,000 1,135,222 -535,222 189% 2 Support to PLE- 10,000 9,493 507 95% UNEB 3 URF 920,969 374,071 546,898 41% 4 YLP 50,000 0 50,000 0% 5 UWEP 9,844 3,383 6,461 34% 7 PRELNOR 559,926 256,130 303,796 46% 8 NTD 50,000 0 50,000 0% 9 OPM 0 15,892 -15,892 0% Total 2,200,739 1,794,191 406,548
243
-
244
- Source: Financial Statements
245
-
246
- Revenue shortfalls adversely affect the implementation of planned activities.
247
-
248
- The Accounting Officer explained that the underperformance in other Government transfers was due to non-release/ or under-release of the various sources of revenue.
249
-
250
- 1.2.4 Performance from external financing
251
-
252
- The District budgeted to receive UGX.3,254,000,000 as external/donor financing out I advised the of which UGX.752,730,825 (23%),was received as shown in the table below:
253
-
254
- Showing performance of external funding
255
-
256
- Accounting Officer to engage
257
-
258
- the
259
-
260
- development S Donor Approved
261
-
262
- Total Receipts Variance %Performance partners and ensure / Budget” (UGX) (UGX) that the activities are n ”000” ”000” (UGX) rolled over and ”000” 1 UNICEF 318,000 0 318,000 0% finally implemented. 2 Global fund for 165,000 169,080 -4,080 102.5% HIV, TB and Malaria 3 WHO 30,000 0 30,000 0% 4 GAVI 158,000 152,407.5 5,592.5 96.5%
263
-
264
-
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
-
273
-
274
- Revenue shortfalls affect the implementation of planned activities. The Accounting Officer attributed the revenue underperformance to outbreak of the Covid-19 pandemic.
275
- 1.3 Absorption of funds Out of the total receipts for the financial year of UGX.30,140,755,120 UGX.27,266,110,731 (90.5%) was spent by the entity resulting in an unspent balance of UGX.2,874,644,389 (9.5%). The unspent balance at the end of the financial year was subsequently swept back to the consolidated fund account.absorption of released funds results in non-implementation of planned activities and negates the purpose for which funds were disbursed. For example, the construction of the seed school at Palaro did not perform to the expected level and non-implementation of some sports activities due to Covid-19 pandemic.Accounting Officer attributed the under absorption of released funds to the COVID-19 outbreak that led to the lockdown and the failure of the district to fill a number of staffing position whose wage bill had been provided.UnderThe I advised the Accounting Officer to ensure that funds for these activities are rolled over and subsequently ensure the speedy implementation of these activities.
276
- 1.4 Off-budget receipts Section 36(6), 43 and 44(20) of the PFMA 2015, require all the public resources including external financing to be paid into the consolidated fund and once deposited shall form part of the consolidated fund and shall be availed through the Appropriations Act. Paragraph 24.6.2 of the Treasury Instructions 2017 also requires an Accounting Officer to ensure that all planned development partner disbursements under his or her vote are included in the vote budget estimates, i.e. appropriated by Parliament.6 of the Budget execution circular requires that all budgets irrespective of the source of financing (GoU/NTR, Donor or local government revenue) will be migrated and loaded onto the IFMS to facilitate budget implementation and reporting.I noted Gulu District did not receive any off-budget financing.Paragraph I commend the Accounting Officer for adhering to the provisions of the law.
277
-
278
-
279
-
280
-
281
-
282
-
283
-
284
-
285
-
286
-
287
-
288
-
289
-
290
-
291
- 1.5 Quantification of outputs/activities Paragraph 55 of the budget execution circular for the financial year 2019/2020 states that the Accounting Officer is required to submit quarterly performance reports by the 30 th day of the first month of the following quarter. These reports should clearly indicate the actual performance against the planned outputs and performance for each quarter, showing the quantity/quality and physical location of the reported outputs against expenditure.of the eleven (11) outputs with a total of seventeen (17) activities and expenditure of UGX.1.72Bn sampled for assessment, I reviewed the extent of quantification of outputs and activities and noted that all the eleven (11) outputs with a total of seventeen (17) activities (100%) were fully quantified as shown in the table below. Table: Extent of Quantification by activitiesSummary of Performance by Outputs Activity details-Analysis Categor y of outputsNo. of outp uts samp led% of total out- puts samp ledExpendi ture UGX Bn% proporti on to total expendi tureTotal no of activiti es in the output sNo. of Fully Quanti fied activiti esNo of activiti es not fully quanti fied% quantific ation of activities @ category of output11 100% 1.72 100% 17 17 00 100% 00 00 00 00 00 00 00 0%00 00 00 00 00 00 00 0%11 100 1.72 100 17 17 00 100%Source: OAG analysisFully quantifie d outputs 2 Insuffici ently quantifie d outputs 3 Outputs 4 not quantifie d TotalOut commend the Accounting Officer for the effort.I
292
-
293
-
294
-
295
-
296
-
297
-
298
-
299
- 1.6 Implementation 6 of Quantified outputs I assessed the implementation of eleven (11) out puts that were fully quantified with a total of seventeen (17) activities worth UGX.1.72Bn and noted the following. Eight (08) outputs with a total of thirteen (13) activities worth UGX 0.93 Bn were fully implemented. The entity implemented all the thirteen (13) activities (100%) within these outputs.  Three (03) outputs with a total of four (04) activities worth UGX 0.79 Bn were partially implemented by the time of the audit. advised the Accounting Officer to address the issue of PBS with the relevant authority and always make on their communication/request to the Ministry.follow-upI
300
-
301
-
302
-
303
-
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
- Total no of activi ties% prop ortio n to total expe nditu reNo of Fully impl eme nted activi tiesNo. Of parti ally impl eme nted activi tiesNo of activi ties that were not imple ment edExtent of impln of activit ies per categ ory of output 8 73 0.93 54 13 13 00 00 100Expe ndit ure UGX% of impl eme ntat ionCategor y outputofNo of out putsTable showing the level of implementation per outputs by activities Summary of Performance by Output Activity details-Analysis3 27 0.79 46 04 00 04 00 7000 00 00 00 00 00 00 00 00Fully impleme nted outputs 5 Partially Impleme nted outputs 6 Outputs Not Impleme nted Totalimplementation of planned activities implies that the expected services to the beneficiary communities were not attained. For example, the entity did not complete work on  Wii- Apaya stream  Palaro Seed Secondary School 33.4km of routine mechanized district roads as shown in Appendix 1Accounting Officer explained that failure to fully implement all planned activities and outputs was due to the use of Programme Budgeting System (PBS) where all the outputs are not quantified especially the non-standard outputs. He further explained that, Wii-Apaya Stream was an emergence activity which was unplanned for, and implemented under force account using Rural Transport Infrastructure (RTI) where the delay was as a result of the delay by the Ministry to respond to the request for the excavator and low bed.11 100 1.72 100 17 13 04 03 86 Source: OAG analysisBnPartialThe
315
-
316
-
317
-
318
-
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
- Preparation 7 and submission of Monitoring plans and reports Paragraph 58 of the Budget Execution Circular for 2019/20 requires the Accounting Officer to prepare and submit annual monitoring plans for government programs and or projects under his/her vote to the Office of the Prime Minister (OPM) with a copy to Ministry of Finance, Planning and Economic Development (MoFPED), Ministry of Local Government (MoLG) and National Planning Authority (NPA) for harmonisation to ensure proper coordination to avoid duplication and fatigue. The Accounting Officers are also expected to submit quarterly monitoring reports to OPM with a copy to the MoFPED for the attention of the Director Budget. Contrary to this I noted that; The entity did not prepare and submit the annual monitoring plans to MoFPED, MoLG and NPA as required. The entity did not also submit quarterly monitoring reports to OPM and MoFPED as required.1.7 advised the Accounting Officer to always ensure compliance with the budget execution circular.I
335
-
336
-
337
-
338
-
339
-
340
-
341
-
342
-
343
-
344
-
345
-
346
-
347
-
348
-
349
-
350
- This practice is not only in contravention of the circular instructions but also hinders efforts of timely monitoring of the implementation of the budget.The Accounting Officer acknowledged the anomaly but explained that the quarterly monitoring of Government programmes was executed.
351
- Submission 8 of Quarterly Performance Reports Paragraph 55 of the BEC for the financial year 2019/2020 states that the Accounting Officer is required to submit quarterly performance reports by the 30 th day of the first month of the following quarter.1.8noted that the entity submitted performance reports for Q1, Q2, Q3, Q4 after the deadline given for submission of the reports as indicated in the table belowNo Details1 2 3 4Quarter One Quarter Two Quarter Three Quarter FourSource: OAG analysisDeadline for submission 31/10/2019 31/01/2020 30/04/2020 31/07/2020Actual date of submission 10/12/2019 01/02/2020 25/05/2020 Not submitted.yetCommentDelayed Delayed Delayed Delayedto submit performance reports in time not only contravenes the budget circular instructions, but also negatively affects the timely evaluation of performance and decision making.Accounting Officer explained that the delayed submission of performance reports was due to the upgrading the PBS which erased data that was input twice and the district experiencing system breakdown in the months of April to mid-June 2020 that contributed to the delay of the department to extract data to be used for reporting.IFailureThe advised the Accounting Officer to always engage the PBS support of MOFPED timely resolution of system challenges.desk forI
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
- 1.9 Accuracy 9 of Performance reports submitted Paragraph 55 of the budget execution circular for the financial year 2019/2020 states that the Accounting Officer is required to submit quarterly performance reports by the 30 th day of the first month of the following quarter. These reports should clearly indicate the actual performance against the planned outputs and performance for each quarter, showing the quantity/quality and physical location of the reported outputs against expenditure.accuracy of performance could not be verified as the 4 th quarter performance report was not clear.Accounting officer explained that this was due to the delay in the approval of the fourth quarter report by the Budget Directorate at Ministry of Finance, Planning and Economic Development.TheThe I advised the Accounting Officer to always ensure that the performance reports are clear and accurate.
360
-
361
-
362
-
363
-
364
-
365
-
366
-
367
-
368
-
369
-
370
-
371
-
372
-
373
-
374
-
375
- supplementary funding, the government encouraged citizens to make voluntary contributions to the State.
376
-
377
- Because the response to the pandemic was emergent in nature, i.e. it was neither
378
-
379
- anticipated nor planned for, there was a risk that the entities that participated in this intervention may experience challenges in optimally applying the availed resource to
380
-
381
- address the effects of the pandemic. I, therefore, considered this as a key audit matter
382
-
383
- and subsequently developed procedures to assess how entities managed the interventions and to satisfy myself that this was done in compliance with the applicable laws, regulations and guidelines.
384
-
385
- I specifically focused on; establishing how much funds were received, the extent of absorption of the funds, existence of approved work plans, compliance with PPDA legal
386
-
387
- framework, the existence of proper accountability for the funds, ensuring that there
388
-
389
- was accurate reporting among others. Based on the work performed I noted the
390
-
391
- following;
392
-
393
- No Observation Recommendation
394
- 1.1 Receipts and utilization of fundsReceipts The entity received a total of UGX 1,236,447,000 from different sources as summarised in the table belowNo. Details/Source 1 1.1 1.22 2.1 2.4Receipts from Treasury Supplementary budget allocation Receipts from MPs Sub Total Donations Receipts from Local donations-Cash Receipts Cash Sub Total Total Receiptsfrom Local donations-NonAmount (UGX)165,000,000 60,000,000 225,000,00027,500,000 983,947,0001,011,447,000 1,236,447,000a)
395
-
396
-
397
-
398
-
399
-
400
-
401
-
402
-
403
-
404
-
405
-
406
- b) Banking of cash receipts I observed that out of the cash received of UGX.87,500,000 only UGX.60,000,000 (68.6%) was banked on Gulu DLG collection Account in BOU while the balance of UGX.27,500,000 (31.4%) was used at source contrary to Paragraph 10.19.2 of the TIs, 2017 which exposes the funds to a risk of abuse.Accounting Officer explained that the money that was spent at source was used to handle Covid related emergencies which required urgent attention.The theI advised the Accounting Officer to always adhere to Treasury Instructions and ensure that all cash collections are promptly banked.
407
- 1.2 Absorption and utilization of funds Out of the total receipts of UGX.252,500,000 (excluding non-cash donations) the entity absorbed UGX.212,500,000 representing absorption level of 84%. The balance of UGX 40,000,000 is part of the receipts from MPs whose cash limit was never given to the entity by the centre. The funds were spent as follows.No Details Amount (UGX) Percentage I advised the Accounting Officer to follow up the UGX 40,000,000 that was retained by Treasury and ensure cash limits are obtained for the same.
408
-
409
-
410
-
411
-
412
-
413
-
414
-
415
-
416
-
417
-
418
-
419
-
420
-
421
-
422
- 1 Allowances 109,960,000
423
- 2 Fuel 49,036,590 60
424
- 3 Welfare 33,493,410 12
425
- 4 Medical Supplies 20,000,000
426
- TOTAL 212,490,000 100
427
- 1.3 Preparation and approval of work plans Paragraph 23 of the Budget Execution Circular 2019/20 requires that all supplementary budget requests must be supported by a realistic work plan and budget.noted that the entity prepared and approved work plans for the use of funds received.I I commend Accounting Officer adhering guidelinestothe for the
428
- 1.4 Compliance with Procurement regulations Paragraph 5 of the guidelines issued by the PSST on the receipt and accountability of donations for Covid-19 requires Accounting Officers to follow PPDA regulations which guide on how procurements should be undertaken under emergency situations.observed that the entity undertook procurements worth UGX.23,715,000 using funds received as part of the Covid-19 response. My review of the procurement records revealed procurement had no major anomalies as summarised in Appendix III.Accounting Officer pledged to uphold the good practice.IThe The Accounting Officer was commended for the level of compliance.
429
- 1.5 Accountability of funds Paragraph 10.10.1 of the Treasury Instructions, 2017 requires that all payments must be adequately supported with sufficient details to enable them to be checked without reference to other documents.reviewed expenditure records availed and noted that all the funds were satisfactorily accounted for as per the Treasury Instructions.I I commended Accounting Officer the accountability of funds.the for satisfactory
430
- 1.6 Management of in-kind donations Paragraph 15.5.1 of the Treasury Instructions,2017 states that inventories are accounted for by value as well as by quantity, and it is necessary for an Accounting Officer to keep records so as to determine the unit cost of each inventory item and the reconciliation of the total value of the stocks of inventories with the financial records. The PS/ST also guided that all in-kind items received in-kind should be taken on charge, distributed with the approval of the Covid-19 task forces and appropriately accounted for.entity received in-kind donation (items) from a number of sources as shown in appendix IV. I noted the following from my review of how these were managed.All the items were valued as required by the Treasury Instructions I was therefore able to confirm the value of these donations in kind and the accuracy of the balances reported in the financial statements. All items were taken in charge by the entity staff as required by the treasury instructions. There was evidence of acknowledgement of receipt for all items the Entity distributed. The Accounting Officer pledged to uphold the good practice.The I commended the Accounting officer for complying with guidelines by PSST and the Treasury Instructions.issued
431
- 1.7 Management of Quarantine Centres I undertook procedures to ascertain how the quarantine centre was managed and noted that the Entity managed the one quarantine centre I commended the Accounting officer for managing the quarantine
432
-
433
-
434
-
435
-
436
-
437
-
438
-
439
-
440
-
441
-
442
-
443
-
444
-
445
-
446
- established at Gulu College of Sciences Laro. I reviewed records relating to centre well. management of the centre and noted that the entity had received UGX.35,500,000 to facilitate the proper management of the quarantine centres. From my inspection, I observed that the quarantine centre is well managed.
447
-
448
- Emphasis of Matter
449
-
450
- Without qualifying my opinion, I draw attention to the following matters disclosed in
451
-
452
- the Financial Statements:
453
-
454
- 3.0
455
-
456
- Effects of the creation of Gulu City on the Assets and liabilities of Gulu District Local Government
457
-
458
- The GOU upgraded Gulu MC to a City status with effect from 1 st July 2020. This
459
-
460
- upgrade of the Municipal Council to City status extended the geographical area of
461
-
462
- the city to include Laliya Sub-County and two parishes of Unyama Sub-county (Pakwelo and Unyama Parishes).
463
-
464
- A review of the commentary by the Accounting Officer reflected that the District would relocate to Awach Sub-county implying reconstruction of new District Headquarter officer and incurring other administrative costs associated with the
465
-
466
- relocation of District operating station.
467
-
468
- The Accounting Officer further disclosed that the effects on other assets owned by the District within the new city are being discussed with the Ministry of Local Government(MoLG).
469
-
470
- I await the outcome of this discussion and final guidance by GOU on this matter
471
-
472
- 4.0 Accumulated Payables
473
-
474
- Included in the payables balance disclosed in Note 23 on page 31 of the financial
475
-
476
- statements is UGX.1,470,813,483 which relates to sundry creditors(UGX.1,345,261,425) and trade creditors (UGX.125,562,058). These outstanding payables may lead to litigation costs for non and delayed settlements.
477
-
478
-
479
-
480
-
481
-
482
-
483
-
484
-
485
-
486
-
487
-
488
- consistent with the financial statements or my knowledge obtained in the audit, or otherwise appears to be materially misstated. If, based on the work I have performed, I conclude that there is a material misstatement of this other information; I am required to report that fact.
489
-
490
- I have nothing to report in this regard.
491
-
492
- Management’s Responsibility for the Financial Statements
493
-
494
- Under Article 164 of the Constitution of the Republic of Uganda, 1995 (as amended) and
495
-
496
- Section 45 of the PFMA, 2015, the Accounting Officer is accountable to Parliament for the funds and resources of Gulu District Local Government. The Accounting Officer is also responsible for the preparation of financial statements in accordance with the requirements of the Public Finance Management Act (PFMA), 2015 and
497
-
498
- the Financial Reporting Guide, 2018 and for such internal control as management determines necessary to enable the preparation of financial statements that are free from material misstatement whether due to fraud or error. In preparing the financial statements, the Accounting Officer is responsible for assessing
499
-
500
- the District’s ability to continue as a going concern, disclosing, as applicable, matters related to going concern and using the going concern basis of accounting, unless the Accounting Officer has a realistic alternative to the contrary.
501
-
502
- Auditor’s Responsibility
503
-
504
- My objectives are to obtain reasonable assurance about whether the financial statements as
505
-
506
- a whole are free from material misstatement, whether due to fraud or error, and to issue an
507
-
508
- auditor’s report that includes my opinion. Reasonable assurance is a high level of assurance,
509
-
510
- but is not a guarantee that an audit conducted in accordance with ISSAIs will always detect
511
-
512
- a material misstatement when it exists. Misstatements can arise from fraud or error and are
513
-
514
- considered material if, individually or in the aggregate, they could reasonably be expected to influence the economic decisions of users taken on the basis of these financial statements.
515
-
516
- As part of an audit in accordance with ISSAI’s, I exercise professional judgment and maintain professional scepticism throughout the audit. I also:  Identify and assess the risks of material misstatement of the financial statements,
517
-
518
- whether due to fraud or error, design and perform audit procedures responsive to those risks, and obtain audit evidence that is sufficient and appropriate to provide a basis for
519
-
520
-
521
-
522
-
523
-
524
-
525
-
526
-
527
-
528
-
529
-
530
- financial statements or, if such disclosures are inadequate, to modify my opinion. My
531
-
532
- conclusions are based on the audit evidence obtained up to the date of my auditor’s
533
-
534
- report. However, future events or conditions may cause the District to fail to deliver its
535
-
536
- mandate.
537
-
538
-  Evaluate the overall presentation, structure and content of the financial statements,
539
-
540
- including the disclosures, and whether the financial statements represent the underlying transactions and events in a manner that achieves fair presentation. I communicate with the Accounting Officer regarding, among other matters, the planned scope and timing of the audit and significant audit findings, including any significant
541
-
542
- deficiencies in internal control that I identify during my audit. I also provide the Accounting Officer with a statement that I have complied with relevant
543
-
544
- ethical requirements regarding independence, and to communicate with him/her all relationships and other matters that may reasonably be thought to bear on my independence, and where applicable, related safeguards.
545
-
546
- From the matters communicated with the Accounting Officer, I determine those matters that
547
-
548
- were of most significance in the audit of the financial statements of the current period and
549
-
550
- are therefore the key audit matters. I describe these matters in my auditor’s report unless
551
-
552
- law or regulation precludes public disclosure about the matter or when, in extremely rare
553
-
554
- circumstances, I determine that a matter should not be communicated in my report because
555
-
556
- the adverse consequences of doing so would reasonably be expected to outweigh the public interest benefits of such communication.
557
-
558
- Other Reporting Responsibilities
559
-
560
- In accordance with Section 19 (1) of the National Audit Act, 2008, I report to you, based on
561
-
562
- my work described on the audit of Financial Statements, that; except for the matters raised
563
-
564
- in compliance with legislation section below, and whose effect has been considered in forming my opinion on financial statements, the activities, financial transactions and information reflected in the financial statements that have come to my notice during the audit, are in all material respects, in compliance with the authorities which govern them.
565
-
566
- Report on the Audit of Compliance with Legislation
567
-
568
- The material findings in respect of the compliance criteria for the applicable subject matters
569
-
570
-
571
-
572
-
573
-
574
-
575
-
576
-
577
-
578
-
579
-
580
- impediments and make recommendations for improvement. Specifically, the audit was
581
-
582
- intended to ascertain whether government Vehicles were/are:
583
-
584
- - Acquired in compliance with Government vehicle acquisition guidelines;
585
-
586
-  Comprehensively recorded in the assets register to ensure their proper management;  Adequately allocated, operated and utilized to enable delivery of public service;  Properly and regularly maintained to achieve optimal performance, increased useful
587
-
588
- lives and reduced running costs; and
589
-
590
-  Disposed in compliance with PPDA guidelines, and disposal proceeds are properly
591
-
592
- accounted for. The study took a scope of three financial years: 2017/18-2019/20. From the
593
-
594
- procedures undertaken, I noted the following key observations;
595
-
596
- Key Observations Audit Recommendation/ Comment
597
- 4.1 4.1.1 the three financial years the District planned to spend UGX.50,000,000 on acquisition of vehicles from government funding. A sum of UGX.50,000,000 (100%) was warranted and released by the Treasury for the purpose and the District purchased 01 vehicle.ACQUISITION OF MOTOR VEHICLES FundingFor
598
- 4.1.2 Compliance with Government Ban on Acquisition of Motor Vehicles According to the Circular letter Ref; BDP/86/107/03 and dated 15 th May 2019 from the Permanent Secretary and Secretary to the Treasury to all Accounting Officers, Government issued a freeze order on purchase of vehicles by all MDAs during the FY 2019/20. Further guidance from the Ministry of Public Service (MoPS) through a Circular letter Ref; ADM 99/205/01 dated 21 st August 2019 indicated that clearance would only be given for procurement of vehicles under on-going donor funded projects.noted that the District acquired 01 motor vehicle at a cost of UGX.0.05bn during the FY 2019/20 using Government of Uganda funds with the necessary waiver from, the PS/ST.I The Accounting Officer is commended for the good practice.
599
- 4.1.3 Paragraph 8.6.2 of the Treasury Instructions (TIs), 2017 requires implementation of the budget to follow the work plans, procurement and recruitment plans approved by Parliament. It was observed that no vehicle was purchased outside the annual work plan. The Accounting Officer acknowledged the observation and promised to uphold the good practice.Unplanned Acquisition of Motor Vehicles I commended the Accounting Officer for adhering the prescribed procurement practices.to
600
- 4.1.4 Compliance with vehicle standardization guidelines of Government Public Service Circular Standing Instruction No. 1 of 1999 and the Establishment Notice No. 1 of 2003 require standardization of vehicles for government officials and Projects by setting out engine capacity limits and vehicles specifications. I noted that the 01 vehicle (100%) acquired at a total cost of UGX.50,000,000 was in line with the approved engine capacity recommended.Accounting Officer acknowledged the observation and promised to uphold good practice.The I commended the Accounting officer for adhering to the set guidelines.
601
-
602
-
603
-
604
-
605
-
606
-
607
-
608
-
609
-
610
-
611
-
612
-
613
-
614
-
615
- 4.2.0 4.2.1 Improper maintenance of Motor Vehicle Records Section 34 (2) of the Public Finance Management Act, 2015 requires an Accounting Officer to keep a register of assets and inventory in the format prescribed by the Accountant General. Furthermore, Paragraph 16.6.1(e) & (f) of the TIs, 2017 requires recording of the acquisition cost and estimated useful life of the asset, which should assist in determining the time of replacement and depreciation cost of an asset.MOTOR VEHICLE RECORDINGFurthermore, Paragraph 10.13.4 of the Tis, 2017 requires all fixed assets acquisitions to be captured in the fixed assets module of the Government Computerised Financial Management Information System (GFMIS).I noted that out of 36 vehicles physically inspected, 35 vehicles (99.4%) were duly recorded in the assets register while one (1) vehicle (0.6%) acquired at a cost of UGX.50,000,000 was not recorded in the assets register.A total of 35 vehicles (99.4%) out of the 36 inspected were recorded in the format prescribed by the Accountant General which required capturing; date of purchase, type of vehicle, registration number, acquisition cost, estimated useful life, physical location, and condition. One (1) vehicle (0.4%) acquired at a total cost of UGX.50,000,000 was not recorded in the required format.the sampled 36 vehicles were traced to the staff or locations as recorded in the assets register which allowed traceability of vehicles.The Accounting Officer attributed the good performance to enforcement of the requirements in the Public Finance Management Act, and the Treasury Instructions.All I commended the Accounting Officer for the good controls in place.
616
- 4.3.0 4.3.1 MOTOR VEHICLE USAGEExistence of a fleet management policy and guidelines I noted that the District did not have a policy on Motor vehicle management to guide the usage and eliminate theft, losses, wastage and misuse of motor vehicles. This affects the entity’s ability to address its unique motor vehicle challenges which may not be envisaged in the standing Orders and Treasury Accounting Instructions.Accounting Officer acknowledged the anomaly and pledged to implement the audit recommendation.The I advised the Accounting Officer to put in place a vehicle management policy streamlining usage of vehicles so as to eliminate wastage and of vehicles.misuse
617
- 4.3.2 Vehicle allocation A review of motor vehicles allocation revealed that there were no officers allocated vehicles. Failure to allocate vehicles to officers may lead to irrational use of resources affecting service delivery.The Accounting Officer explained that the District has few motor vehicles which are shared among departments during implementation of programmes; which allocates vehicles to officers at UISE a challenge. Some vehicles sent to the District were attached to projects, and these projects are managed by designated officers who are not necessarily Heads of Departments.Motor I advised the Accounting Officer to engage Ministry of Public Service on the revision the standing order in that regard.of
618
- 4.3.3 Support to Entity Service Delivery A review of the vehicle allocation to key service centers in the District revealed that some departments or units were not adequately allocated vehicles as indicated in the table below; I advised the Accounting Officer to always rationalize the allocation of vehicles in various departments/units of the District to ensurethe
619
-
620
-
621
-
622
-
623
-
624
-
625
-
626
-
627
-
628
-
629
-
630
-
631
-
632
-
633
- SN Unit/Depa rtment requiring vehicles No. of vehicl es allocat edType of vehicles allocated Are allocated vehicles adequate and appropria te (yes/no) Reasonsallocationforinadequate effective and efficient service delivery in the departments.
634
- 1 Trade 0 0 No When the greater Gulu was divided and Amuru plus Omoro Districts created, the vehicles’ had to be divided hence creating the current gaps. Revenue too creation of those districts.dwindled with
635
- 2 Engineering D/CABIN3 PICK-UP No All are in dangerous mechanical conditions. Only 1 running
636
- 3 Administrati on D/CABINPICK-UP1 No When the greater Gulu was divided and Amuru plus Omoro Districts created, the vehicles’ had to be divided hence creating the current gaps Revenue too creation of those districts.dwindled with
637
- Inadequate allocation of vehicles to the above District departments/units affected supervision and monitoring efforts of those departments/units which negatively affecting the level of service delivery in regard to enforcement of education standards.The Accounting Officer pledged that he would ensure the available though inadequate vehicles will be shared amongst the departments to achieve planned activities.
638
- VEHICLE MAINTENANCEAdequacy of Vehicle Maintenance Funding4.4.0noted that the District spent a total of UGX. 566,964,207 against the vehicle maintenance budget of UGX. 653,602,358 reflecting a funding shortfall to the tune of UGX.86,638,157 which is 13.3% of the budgeted vehicle maintenance funds as indicated in the table below;FY Vehicle Maintenance Budget (A)Amount spent (C)Variance (A-C)Average spending per vehicle (C/B)No. of operatio nal entity motor Vehicles (B) 2017/1 135 8 2018/1 9 2019/2 0140,654,070 118,820,513 880,152 21,833,557 266,115,597 137 241,916,982 1,765,817 24,198,615 246,832,691 138 206,226,712 1,494,396 40,605,979 Total 653,602,358 566,964,207 86,638,151The district’s annual average vehicle maintenance cost increased by 41% from UGX.880,152 in the FY 2017/18 to UGX.1,494,396. This increment may partly be caused by the aging number of the fleet as illustrated by the fewer number of vehicle replacements.Accounting Officer explained that the District has few vehicles. However, efforts were being made to provide for additional vehicles through local revenue budgets as the Ministry had banned purchase of new vehicles under the different funding.I4.4.1The advised the Accounting Officer to devise strategies that would bring vehicle maintenance costs to manageable levels.I
639
-
640
-
641
-
642
-
643
-
644
-
645
-
646
-
647
-
648
-
649
-
650
-
651
-
652
-
653
-
654
-
655
-
656
-
657
-
658
-
659
-
660
-
661
- 6.0 Status of Basic Medical Equipment in HCIV
662
-
663
- Medical Equipment represents a substantial asset in the health care delivery system;
664
-
665
- including maternal care and it needs to be managed efficiently. Moreover, the way in
666
-
667
- which it is purchased, managed and used can influence the quality of health care
668
-
669
- delivered to patients. Medical equipment can also pose a risk to patients and staff, particularly if used improperly. In addition, routine/periodic and corrective
670
-
671
- maintenance of medical equipment is key in achieving safe and cost-effective management of medical equipment.
672
-
673
- It is against this background that the status of basic medical equipment for maternal
674
-
675
- health was selected as an area of focus in the audit of financial year ending 30th June 2020.
676
-
677
- Based on my audit I made the following observations;
678
-
679
- 7.0 Inadequate medical equipment at Awach Health Centre IV
680
-
681
- Section 7.26 to 7.28 of Health Sector Service standards & Service delivery standards,
682
-
683
- 2016 defines the appropriate functional equipment and tools required for handling normal delivery, resuscitation of new born, and emergency care and resuscitation of mothers.
684
-
685
- However, audit observed that the health facility had inadequate two medical
686
-
687
- equipment fetoscopes and Blood Pressure machines while the rest are in excess.
688
-
689
- S/n Type of medical equipment Recommended no Available no
690
- 1 Fetoscopes 10 9
691
- 2 Episiotomy set 2 4
692
- 3 Penguin sucker 5 10
693
- 4 Ambubag–Adult 2 3
694
- 5 Blood pressure machines (bp) 5 4
695
-
696
-
697
-
698
-
699
- Consequently, the health facility might not have been able to provide adequate screening and diagnostic services to the patients.
700
-
701
- The Accounting Officer explained that the district was able to procure more equipment for the health facility. However, the reasons for excess procurement of some equipment and leave out inadequate equipment was not explained.
702
-
703
- - Normal deliveries represented 89%
704
- - Delivery by Caesarean represented 2.2%
705
-
706
-
707
-
708
-
709
-
710
-
711
-
712
-
713
-
714
-
715
-
716
- in charge of the ward attributed the referral of mothers deliveries to lack of a blood bank at the health centre.
717
-
718
- The HCIV is not in position to provide adequate maternal health services to the
719
-
720
- community.
721
-
722
- The Accounting Officer explained that blood transfusion services are now provided
723
-
724
- and readily available at all times to patients that need it unless there is a stock out of the blood.
725
-
726
- I commended the Accounting Officer’s efforts.
727
-
728
- 9.0 Follow up on UGIFT projects
729
-
730
- During last year’s audit process, it was noted that the district had commenced
731
-
732
- construction works on Palaro Seed Secondary School under the Education Sector. I carried out a follow-up audit on this project to assess;
733
-
734
-  The level of implementation of the works against the approved contracts,
735
-
736
- work plans and outputs;
737
-
738
-  The usage, functionality and quality of the infrastructure works in the schools.
739
-
740
- 9.1 Delayed physical progress of the works
741
-
742
- During the audit, I noted that the planned commencement date of works was 6 th July 2019 and completion date by 30 th June 2021 as per the Contract Agreement. A
743
-
744
- review of the progress report revealed that planned works were behind schedule by 3 months as shown in photos below:-
745
-
746
-
747
-
748
-
749
-
750
-
751
-
752
-
753
-
754
-
755
-
756
- ICT Block
757
-
758
- Column bars installed awaits casting
759
-
760
- 3 classroom Blocks @ 2 class rooms
761
-
762
- 2 unit Science Laboratory block
763
-
764
- Brick works has reached ring beam level and await casting the columns and beams as well
765
-
766
- First block of 2 classrooms
767
-
768
- Brickworks has reached beam level and column bars Brickworks has reached beam level and column bars installed and awaits casting the columns and ring installed and awaits casting the columns and ring beam beam
769
-
770
-
771
-
772
-
773
-
774
-
775
-
776
-
777
-
778
-
779
-
780
- 9.2
781
-
782
- Ineffective Internal control over certification of works for payments
783
-
784
- I examined the interim payment certificates of M/s.Davich Company Ltd Contractor
785
-
786
- to establish the availability of measurement sheets detailing the quantities and costs
787
-
788
- in the payment certificates. I noted no inconsistencies and there was no delayed settlement of the certificates. The amount paid to the contractor was also found to
789
-
790
- be commensurate with the works certified.
791
-
792
- I commended the Accounting Officer for the effective internal control over works certification.
793
-
794
- 9.3 Contract supervision and monitoring; I reviewed the monthly progress reports and contract management file to ascertain
795
-
796
- the extent of project supervision and monitoring and I noted that the reports defined
797
-
798
- the scope of works, the progress of work in terms of physical, financial and
799
-
800
- timeliness, an indicator that the progress reports are adequate. Additionally, there
801
-
802
- were four sets of minutes of site meetings availed and weekly monitoring reports on the construction by the District Engineer.
803
-
804
- The Accounting Officer attributed this good performance to the weekly supervision
805
-
806
- and monitoring by the District team.
807
-
808
- I commended the Accounting Officer and encouraged him to strengthen supervision and monitoring even more in order for the Contractor to deliver on time.
809
-
810
- 10.0 Under staffing
811
-
812
- Uganda Public Service Standing Orders Chapter (A-a) paragraph 15(a) requires Permanent Secretary Ministry of Public Service to determine the terms and conditions of Service and the structures of the Public Service in consultation with the Secretary to the Treasury.
813
-
814
- It was observed that out of the staff establishment of 233 employees, only
815
-
816
- 159(68%) posts were filled leaving a staffing gap of 74 (32%) as shown in
817
-
818
- Appendix V.
819
-
820
-
821
-
822
-
823
-
824
-
825
-
826
-
827
-
828
-
829
-
830
- John F.S. Muwanga
831
-
832
- AUDITOR GENERAL
833
-
834
- 15 th December, 2020
835
-
836
-
837
-
838
-
839
-
840
-
841
-
842
-
843
-
844
-
845
-
846
- Appendix I: Evaluation of the achievement of planned outputs
847
-
848
- Planning Release of funds and implementation Monitori ng and Evaluatio n Reporting
849
- Progra mme/ Project Output/ Activitie s Are the resou rces alloc ated/ estim ates base d on realis tic assu mpti ons (Yes/ No) If no give reaso ns Planned Target for the Financial year Budge ted amoun t UGX (‘000’) Amount Revised Amount released Amount spent byAchieved Target Financial year-end @ annual performance report Causes forthe variances for variances Audit conclusion Fully, partially, or Not implemented the in theno Is the performance of the activity accurately reported in the annual performance reports- (Yes/No) no reasonsIf give
850
- UGX (‘000’) UGX (‘000’) UGX (‘000’) annual performance report
851
- Administration
852
- 1381 District and Urban Admini stratio n ofRenovati on District store YES District storerenovated 7,590 7,590 7,590 7,590 Districtrenovatedstore 0 NA Fully implemented No M&E report Quarter report availed.4 not
853
- Education Department 0 0 0 0
854
- 0781 Pre- Primary and (0781 80 Classr oom Yes Construction of 1 block of 2 classrooms at 106,38 2 106,382 106,382 75,000 Construction of 1 block of 2 classrooms at 0 Fully implemented; No M&E report Quarter 4 report not availed.
855
-
856
-
857
-
858
-
859
- Variance Was
860
-
861
- activity reported
862
-
863
- on
864
-
865
- periodic monitori
866
-
867
- ng
868
-
869
- reports- (Yes/No)
870
-
871
- If give
872
-
873
- reasons
874
-
875
- 22
876
-
877
-
878
-
879
-
880
-
881
-
882
-
883
-
884
-
885
-
886
-
887
- Primary Educatio n constr uction and rehabil itation ) Panykworo Panykworo
888
- Construction of 1 block of 4 units teachers` house 102,92 3 102,923 102,923 94,616 Construction of 1 block of 4 units teachers` house 0 Fully implemented; No M&E report Quarter 4 report not availed.
889
- Partial construction of of 1 block of 2 classrooms at Kitenywalo PS 33,141 33,141 33,141 31,484 Partial construction of of 1 block of 2 classrooms at Kitenywalo PS 0 Fully implemented; No M&E report Quarter 4 report not availed.
890
- 0782 Seconda ry Educatio n 07828 0- Secon dary School Constr uction and Rehabi litation ) YES of seed-Completion Palaro secondary school 1,455,6 90 1,455,690 1,455,690 481,690 -Palaro School constructed 0Seed NA Partially implemented; No M&E report Quarter 4 report not availed.
891
- and ofMonitoring, Supervision Appraisal capital worksQuarterly and of worksQuarterly Monitoring, Supervision Appraisal capital reports NA Fully implemented; Quarter 4 report not availed.
892
- Health Department 0 0 0 0
893
- 0881 Primary Healthca re (08815 5 Standar d Latrine Constru ctionPit YES Construction of 1 block of 4 stances drainable latrine Patiko HC IIIat 21,621 21,621 21,621 18,419 ofConstructed 1 block 4 stances drainable latrine Patiko HC IIIat 0 Fully implemented; No M&E report Quarter 4 report not availed.
894
-
895
-
896
-
897
-
898
- No M&E
899
-
900
- report
901
-
902
- 23
903
-
904
-
905
-
906
-
907
-
908
-
909
-
910
-
911
-
912
-
913
-
914
-
915
- 088180 Health Centre Constru ction and Rehabili tation YES Partial construction of standard OPD at Lapeta HC II phase 1 65,000 65,000 65,000 64,421 Partial construction of standard OPD at Lapeta HC II phase 1 done 0 Fully implemented; No M&E report Quarter 4 report not availed.
916
- Roads and Engineering 0 0 0 0
917
- 0481 District, Urban and Commun ity Access Roads Mainte nance of Distric t roads YES Routine mechanised maintainance- 42.5km 774,25 4 774,254 455,605 318,649 -33.4 km of district roads Routinely Mechanised 9.1 Partially implemented; No M&E report Quarter 4 report not availed.
918
- -Manual Maintenance 378.3km District roadsof of -378.3km of District roads manual maintened for 2 months 0 Partially implemented; No M&E report Quarter 4 report not availed.
919
- equipment maintained and servcedRoads Roads equipment maintained and servced N/A Partially implemented; No M&E report Quarter 4 report not availed.
920
- Road constr uction and rehabil YES Rehabilitation of 3.3 km Gulu PTC- Kidere road 126,94 0 126,940 121,788 5,152 3.3 km Gulu PTC- Kidere road rehabilitated 0 Fully implemented; No M&E report Quarter 4 report not availed.
921
-
922
-
923
-
924
-
925
- 24
926
-
927
-
928
-
929
-
930
-
931
-
932
-
933
-
934
-
935
-
936
-
937
- itation
938
- YES - Emergency works on Wii- Apaya stream 54,239 54,239 54,239 0 -Armco culverts installed 1 Not implemented; No M&E report Quarter 4 report not availed.
939
- WATER 0 0 0 0
940
- 0981 Rural Water Supply and Sanitatio n Design of Rural Growth centre water scheme YES Design of pipe water system and sanitation facilities at Cwero Growth Centre 50,950 50,950 50,950 0 water andPipe system sanitation facilities at Cwero Growth Centre Designed NA Fully implemented; No M&E report Quarter 4 report not availed.
941
- 098183 Borehol e drilling and rehabilit ation YES -Drilling, casting and installation of 15 New bore holes the district 290,67 1 290,671 290,671 0 -15 New bore holes were Drilled, casted and Installed 0 Fully implemented; No M&E report Quarter 4 report not availed.
942
- - Assessment and rehabilitation of 25 Bore holes 160,73 0 160,730 160,730 0 assessed rehabilitatedboreholes and-25 0 Fully implemented; No M&E report Quarter 4 report not availed.
943
-
944
-
945
-
946
-
947
- 25
948
-
949
-
950
-
951
-
952
-
953
-
954
-
955
-
956
-
957
-
958
-
959
- Appendix II(a): Fleet Management
960
-
961
- WORKS
962
- S/n Reg. No. Make Model/Ye ar Type Engine Model Engine No. Chassis No. Remarks
963
- 1 LG0001 -030 CHANLIN G 713 (2012) Motor Grader CUMIN- 6BTAS 3y 40301 71300070 Running
964
- 2 LG0002 -030 JAIFANG CA3120P1K 2Y(2012) Damper Truck CA611/125 Z1A2 51934960 CAC000906 Pending Repair
965
- 3 LG0003 -030 JMC ISUZU JMC (2012) D/Cabin Pick-Up JX1023DJB JX49301 13CHP21324 Pending Repair
966
- 4 LG0003 -09 KOMAT’S U D53A-17 (1996) Bull Dozer 6D125E-2 745090 82678 Under Repair
967
- 5 LG0002 -09 KOMAT’S U GD511 A-1 (1992) Motor Grader GD95L 64064 G51A-10213 Grounded
968
- 6 UR0531 UKOMAT’S WA180 (1992) Wheel Loader GD95L 93482 I2672 Running
969
- 8 UR 0590 MASSEY FUGAERS ON MF 395 (1992) Tractor 142LT 312339V4794 34269M6135 To be boarded off
970
- 9 S/N.CS4 31B CATERPI LLAR MW(1992) Vibro Rollar 1XF 5711343A 1XF-0075 Pending Repair
971
- 10 UG 2035S HINO JD8CF (2015) Bore Hole Service Truck JD8CF JD8CF 43177 JHDGT1JHP0X X18596 Running
972
- 11 UG 1830W KOMAT’S U GD6125(20 17) Motor Grader 6D125 6D125-117292 KMTGDO28AH A001763 Running
973
- 12 UG 1929W KOMAT’S U WA250 (2017) Wheel Loader SAA6D102 FF-2 6D102- 26497752 KMTWA0207H A72905 Running
974
- 13 UG 2425W SAKAI SV520D (2017) Vibrator Roller Running
975
- 14 UG 2291W FUSO 6D16 (2017) Water Bowser 6D16- A71562 FM657F- A45427 Running
976
- 15 UG 2558 W FUSO 6D16(2017) TruckDumper 6D16- A71562 FM657F- A45427 Running
977
- 16 UG 2307W FUSO 6D16 (2017) Dumper Truck 6D16- A70605 FM657F- A45226 Running
978
- 17 LG0146 -09 YAMAHA 9)DT125(200 Field M/Cycle 3HA 3HA- L125S- To Be Boarded Off
979
- 19 LG0094 -09 NISSAN HARD BODY QD32 (2004) D/Cabin Pick-Up QD32 J84033 ADJ84000D05 3804 Grounded
980
-
981
-
982
-
983
-
984
-
985
-
986
-
987
-
988
-
989
-
990
-
991
-
992
-
993
-
994
- 20 LG0134 -09 NISSAN HARD BODY QD32 (2004) D/Cabin Pick-Up Running
995
- 21 LG0008 -09 ISUZU TRUCK FTS (1992) Drilling Rig 6GB1 JAHFTS- 12HP8600012 Grounded To Be Boarded Off
996
- 24 LG0004 -030 JINCHEN G JC125GY( Sport M/Cycle JC1566F Grounded To Be Boarded Off
997
- 25 LG0005 -030 JINCHEN G JC125GY Sport M/Cycle JC1566F To Be Boarded Off
998
- 26 LG0137 -09 CHESS POOL EMPTIER POOL TRUCK(200 0) FC2WCA- 01467 Grounded
999
- 27 UFC 326C YAMAHA AG-125 (2020) Field M/Cycle E-121E E121E-013133 LBPCE26W0H -0013138 Brand New
1000
- S/N REG. NO MAKE MODEL/YE AR Type ENGINE MODEL ENGINE NO CHASIS NO Remark
1001
- 1 uek 300z Honda xl 125l Sport XL-125 JD21E- 2223237 LTMJD2194F5 304997 Running
1002
- 2 UEK 305Z HONDA XL 125L Sport XL 125L JD21E- 2222859 LTMJD2193F5 304764 Running
1003
- 3 UEK 306Z HONDA XL 125L Sport XL 125L JD21E- 2223151 LTMJD2195F5 304958 Running
1004
- 4 UG5331 M YAMAHA DT 125 Sport DT 125 3TT-216066 DEO2X- 093315 Running
1005
- 5 UG 4761 M YAMAHA DT 125 Sport DT 125 3TT-215036 DEO2X- 092287 Running
1006
- 6 UG 5205 M YAMAHA DT 125 Sport DT 125 3TT-215916 DEO2X- 093166 Running
1007
- 7 UG 4691 M YAMAHA DT 125 Sport DT 125 3TT-21479 DE02X- 092041 Running
1008
- 8 UEF 135Y Bajaj Boxer BN100/150 Sport BN100/15 0 DUZWFL44648 MDZA18AZ9F WL36338 Running
1009
- 9 UDX 590Z HONDA XL 125 Sport XL-125 LTMJD195C52 02684 Running
1010
- 10 UG 4400M Yamaha AG 100 Field AG-100 3HA-195719 3HA-195877 Running
1011
- 11 LG 010- 030 Yamaha DT 125 Sport DT-125 3TT-178708 DE02X- 055957 Running
1012
- 12 UED 544G Bajaj Boxer BN100/150 Sport BN100/15 0 MD2A18AZ2E WL DUZWEL5048 0 Running
1013
- 13 uek 300z Honda xl 125l Sport xl 125l JD21E- 2223237 LTMJD2194F5 304997 Running
1014
-
1015
-
1016
-
1017
-
1018
-
1019
-
1020
-
1021
-
1022
-
1023
-
1024
-
1025
-
1026
-
1027
-
1028
- 14 UEK 305Z HONDA XL 125L Sport XL 125L JD21E- 2222859 LTMJD2193F5 304764 Running
1029
- 15 UEK 306Z HONDA XL 125L Sport XL 125L JD21E- 2223151 LTMJD2195F5 304958 Running
1030
- 16 UDX 220 Z HONDA XL 125 Sport XL 125 JDZ1E - 2010718 LTMD2194C5 208041 Running
1031
- 17 UDX 591 Z HONDA XL 125 Sport XL 125 Running
1032
- 18 UDX 722Y HONDA XL 125 Sport XL 125 SDH152FM1-4 LTMJD2193C5 205261 Running
1033
- 19 LG 0166-09 Yamaha AG 100 Sport AG 100 3HA-137592 3HA-137592 Running
1034
- 20 UG 3889 M SUSUKI TF 125 Field TF 125 TF125-145348 TF125- 145015 Running
1035
- 21 LG0141 -09 YAMAHA AG 100(2012) Field AG 100 3HA-158670 3HA-158906 Running
1036
- 22 UBA728 Y YAMAHA DT125 (2008) Sport DT12Y 3TT-165451 DEO2X- 042704 Running
1037
- 23 UBA729 Y YAMAHA DT-125 (2008) Field DT-125 3TT-16544 DEO2X-2705 Running
1038
- 24 UAC753 HONDA XL-125 Sport XL-125 JC30E8 3500637 9C2JD20103R 500637 Grounded
1039
- 25 UG 3430 M HONDA XL-125 Sport XL-125 L125SE*55892 5S Running
1040
- 26 UG 3662M HONDA XL-125 Sport XL-125 L125SE- 5594677 LI25SE- 5740530 Stolen
1041
- 27 UG 1733 M YAMAHA- DT 125 Sport DT 125 3TT-127457 JYAD02X72A0 04701 Stolen
1042
- 28 UG 2385 M YAMAHA AG 100 Field AG 100 3HA-117554 3HA-118159 Running
1043
- 29 UG 2306 M YAMAHA AG 100 Field AG-100 3HA-117145 3HA-117288 Running
1044
- 30 UG 2592 m YAMAHA bmk-l80 Sport BMK-180 ite47sne*0500 0214 ny4yxae*075t 000194 Grounded
1045
- 31 UG 2466 M YAMAHA bmk- cy80 Sport BMK-CY8O IPE47FME*05 000451 XLY4XAE*065 T000431X Grounded
1046
- 34 UG 3617 M YAMAHA- MBK-CY 80 Sport MBK-CY 80 4GC0600560 4GC059978 Under REPAIR
1047
- 36 UG 2040 M SUZUKI- TF 125 Field TF125-145348 TF-125 145015 Grounded
1048
- 37 UG 0812M YAMAHA- AG 100 Field 3HA-075968 3HA- 0762E064 Grounded
1049
- 38
1050
-
1051
-
1052
-
1053
-
1054
-
1055
-
1056
-
1057
-
1058
-
1059
-
1060
-
1061
-
1062
-
1063
-
1064
- 39 UG 3502 M MARUTI 2006 Ambulanc e GYPSY 613BBN- 41500233761 S To Be Boarded Off
1065
- 40 UG 3511 M MARUTI 2006 Ambulanc e GYPSY To Be Boarded Off
1066
- 41 UG 3550 M Nissan 2008 D/ Cabin To Be Boarded Off
1067
- 42 UG 0440 M Ford Ranger 2006 D/ Cabin To Be Boarded Off
1068
- 43 LG 0172-09 Land cruiser 2014 Ambulanc e Running
1069
- 44 UG 6490M TOYOTA HILUX 2019 D/ Cabin 2GD0761340 AHTFB8CD80 3875541 (Running )
1070
- 45 YAMAHA AG-125 (2020) Field M/Cycle E-121E E121E LBPCE26W0H Brand New
1071
- 46 YAMAHA AG-125 (2020) Field M/Cycle E-121E E121E LBPCE26W0H Brand New
1072
- S/N REG. NO MAKE MODEL/YE AR Type ENGINE MODEL ENGINE NO. CHASS NO Remarks
1073
- 1 UG- 0153G TF125CC 2008 Field TF-125 TF-125- TF-125- To Be Boarded Off
1074
- 2 LG0139 -09 TOYOTA 2009 Bonet Truck IHZ-0585890 JTEED- 71J70700305 8 Grounded
1075
- 4 UG0241 Y - 2000 Field AG-100 UGA66-102 4GC060072 Grounded To Be Boarded Off
1076
- 5 LG0033 -030 YAMAHA - Field AG-100 3HA-159401 3HA-159746 Grounded To Be Boarded Off
1077
- 6 LG0034 -030 YAMAHA - Field 3HA-145708 3HA-145462 Grounded To Be Boarded Off
1078
- 7 UG2029 R JAILING 2008 Sport L-125CC 156FM1*2008 000 LAAJKJG- 680000715 Grounded To Be Boarded Off
1079
- 8 UG2072 R JAILING 2008 Sport L -125CC 156FM1*2008 603 LAAJKJG- 80000629 Grounded To Be Boarded Off
1080
- 9 UG1548 R JAILING 2008 Sport L-125CC 156FM1*2008 000716 LAAJKJG- 680000830 Grounded To Be Boarded Off
1081
- 10 UG0572 H0NDA XL/2010 Sport L125CC JD21E- 2010634 LTMJD2193C5 208130 Running
1082
-
1083
-
1084
-
1085
-
1086
-
1087
-
1088
-
1089
-
1090
-
1091
-
1092
-
1093
-
1094
-
1095
-
1096
- 11 UG1549 R JAILING 2008 Sp0rt L-125CC 156FM1*2008 000595 LAAJKJG- 780000802 To Be Boarded Off
1097
- 12 UG1274 R JAILING 2008 Sport L-125CC 156FM1*2008 000451 LAAJKJG- 880000683 To Be Boarded Off
1098
- 13 LG0021 -030 YAMAHA XTZ/2015 Sport L-25CC E3N2E042786 LBPE1790000 17854 Running
1099
- 14 LG0023 -030 YAMAHA XTZ/2015 Sport L-125CC E3N2E042854 LBPKE179000 017792 Running
1100
- 15 LG0029 -030 YAMAHA XTZ/2015 Sport L-125CC E3N2E042566 LBPKE179000 017846 Running
1101
- 16 LG0031 -030 YAMAHA XTZ/2015 Sport L-125 CC E3N2E042849 LBPKE179000 017794 Running
1102
- 17 LG0032 -030 YAMAHA XTZ/2015 Sport L-125CC E3N2E042836 LBPKE179000 017798 Running
1103
- 18 LG0030 -030 YAMAHA XTZ/2015 Sport L-125CC E3N2E042788 LBPKE17900S 0017851 Lost
1104
- 19 UG1006 Y YAMAHA XTZ/2018 Sport L-125CC E3N2E-077857 LBPKE179000 026539 Running
1105
- 20 UG0876 Y HONDA CG/2017 Sport L-125CC WH156FMI2 LWDPCJ1F9G 1005108 Running
1106
- 21 UG040Y TOYOTA HIACE Toyota 3L- - - Head Quarter For Repair
1107
- 22 UG0740 Y YAMAHA XTZ/2017 Sport E3N2E064146 LBPKE179000 022295 Running
1108
- 23 UG0473 Z FORD -2011 D/Cabin T8963II AFA1XXXMJ2T BE12088 To Be Boarded Off
1109
- 24 UG0937 Z TOYOTA HILUX 2018 D/Cabin AHTKB3CD80 2624025 Running (New
1110
- PRODUC TION
1111
- S/N REG. NO. MAKE MODEL/YE AR Type EGINE MODEL ENGINE NO. CHASS NO. Remarks
1112
- 1 UG 2482A YAMAHA 2017 Sport XTZ-125 E3N2E-056238 LBPKE- 17900002105 9 Running
1113
- 2 UG3279 R YAMAHA 2018 Sport XTZ-125 E3N2E-067522 LBPKE- 17900002362 1 New
1114
-
1115
-
1116
-
1117
-
1118
-
1119
-
1120
-
1121
-
1122
-
1123
-
1124
-
1125
-
1126
-
1127
-
1128
- 3 UG3277 R YAMAHA 2018 Sport XTZ-125 E3N2E-067393 LBPKE- 17900002360 3 New
1129
- 4 UG3276 R YAMAHA 2018 Sport XTZ-125 E3N2E-067499 LBPKE- 17900002361 3 New
1130
- 5 UG2485 A YAMAHA 2017 Sport XTZ-125 E3N2E-056252 LBPKE- 17900002106 8 Running
1131
- 6 UG2484 A YAMAHA 2017 Sport XTZ-125 E3N2E-056271 LBPKE- 17900002106 2 Running
1132
- 7 UG2381 A YAMAHA 2015 Field M/C AG-100 3HA-208739 JYA3HA00002 09069 Running
1133
- 8 UG0515 Z HONDA XR 2011 Sport XR-125 Gronded
1134
- 9 UDX111 YAMAHA 2012 Sport DT-125 3TT-0201743 DE02X- 0078994 Running
1135
- 10 UDX169 YAMAHA 2012 Sport DT-125 3TT-0200873 DE02X- 0078124 Grounded
1136
- To Be Boarded Off
1137
- 11 UDX135 Y YAMAHA 2012 Sport DT-125 3TT-0199570 DE02X- 0076821 Grounded
1138
- To Be Boarded Off
1139
- 12 UG0521 Z HONDA 2011 Sport XR-125 6616801 LTMJD19A5B5 2299562 Grounded
1140
- To Be Boarded Off
1141
- 13 UDX782 Z YAHAMA 2012 Sport DT-125 3TT-216689 DE02X- 093990 Running
1142
- 14 UG3093 R MITSUBI SHI L200 2014 D/Cabin L 200 Running
1143
- 15 UG0513 Z HONDA XR-125 (2012) Sport JC30E 6616785 LTMJDA19A8B 5229966 Running
1144
- 16 UG0516 Z HONDA XR-125 (2012) Sport JC30E 6616745 LTMJD19AXB5 229984 Running
1145
- 17 UG 0017Z LAND ROVER 2000 Bonet Truck Grounded
1146
- To Be Boarded Off
1147
- LG3253 -030 ISUZU 2016 D/Cabin
1148
- 21 UG2785 TOYOTA D/CABIN D/Cabin GUN125R 2GD0443797 AHTFB8CD60 Brand New
1149
-
1150
-
1151
-
1152
-
1153
-
1154
-
1155
-
1156
-
1157
-
1158
-
1159
-
1160
-
1161
-
1162
-
1163
- A HILUX 3871536
1164
- UEV498 K YAMAHA Sport E3N2E-081584 28604LBKEI790000 Brand New (Omara Ep.)
1165
- 20
1166
- UEV284 K YAMAHA 2017 Sport E3N2E-080207 28098LBKEI790000 Brand New (Anywar G.)
1167
- 21
1168
- UEV510 K YAMAHA 2017 Sport E3N2E-081668 28703LBKEI790000 Brand New (Lawach J.)
1169
- 22
1170
- 23 UEV335 K YAMAHA 2017 Sport E3N2E-079768 27835LBKEI790000 Brand New (Lanek Jp.)
1171
- 24 UEV367 K YAMAHA 2017 Sport E3N2E-079761 27800LBKEI790000 Brand New Komakech J.)
1172
- 25 UG2658 A YAMAHA 2017 Sport E3N2E-078189 26801LBKEI790000 Brand New (Opiyo A.)
1173
- 26 UEV89O K YAMAHA 2017 Sport E3N2E-080023 27902LBKEI790000 Brand New (Acaye A.)
1174
- 27 UEV892 K YAMAHA 2017 Sport E3N2E-080089 27854LBKEI790000 Brand New (Otema S.)
1175
- REG. NO. MAKE MODEL/YE AR Type EGINE MODEL ENGINE NO. CHASS NO. Remarks
1176
- S/N
1177
- 1 LG0138 -09 TOYOTA 2008 D/Cabin 2KD- 2KD7491321 AHTFR22G40 60 Running
1178
- 2 UG0393 E IZUSU TFS 2003 D/Cabin 4AJ 654122 JAATFS544H W-7102203 To Be Boarded Off
1179
- 3 UG1062 E MISUBIS HI 1994 D/Cabin 4056-HN7447 VSM21-4625 To Be Boarded Off
1180
- 6 UG1995 E HONDA 2009 Sport XL-125 L125E- 5603194 L125S- 5749040 To Be Boarded Off
1181
- 7 UG3839 R JAILING 2009 Sport JL156FML -09A345501 LAAAJKJG- 190001934 To Be Boarded Off
1182
- 8 UG2840 R JAILING 2009 Sport JL156FML -09A345501 LAAAJKJG- 190001935 To Be Boarded Off
1183
- 9 LG0043 -030 ISUZU DEMAX 2016 D/Cabin JR5G 4597423 RH4CDMM374 9-12A17 Running
1184
- 10
1185
- REG. NO. MAKE MODEL/YE AR Type EGINE MODEL ENGINE NO. CHASS NO. Remarks
1186
- S/N
1187
- 1 LG0020 -030 TOYOTA 2015 D/Cabin 3L C-21BA59 AHTFR22E706 100974 Running
1188
- 2 LG0008 -030 FORD RANGER 2014 D/Cabin Under Repair
1189
-
1190
-
1191
-
1192
-
1193
-
1194
-
1195
-
1196
-
1197
-
1198
-
1199
-
1200
-
1201
-
1202
-
1203
- 3 LG0006 -030 YAMAHA 2014 Sport DT-125 3TT- Running
1204
- 4 UG3159 R MITSUBI SHI 2015 D/Cabin Running
1205
- 5 LG0017 -030 YAMAHA 2014 Sport DT-125 3TT-208280 Running
1206
- 6 UDX082 Y YAMAHA 2012 Sport DT-125 Running
1207
- 7 LG0007 -030 YAMAHA 2014 Sport DT-125 Omoro District
1208
- 8 LG0009 -030 YAMAHA 2014 Sport DT-125 Running
1209
- 9 LG0018 -030 YAMAHA 2014 Sport DT-125 Stolen
1210
- 10 LGOO1 9-030 YAMAHA 2014 Sport DT-125 Court Bailiff
1211
- 11 UG1239 R FORD RANGER 2009 D/Cabin 2KD -7495631 AHTFR22G80 60 Poorly Running
1212
- 12 LG0039 -030 YAMAHA 2016 Sport YBR-125 Running
1213
- 13 LG0038 -030 YAMAHA 2016 Sport YBR-125 Running
1214
- 14 LG0037 -030 YAMAHA 2016 Sport YBR-125 Running
1215
- 15 LG0036 -030 YAMAHA 2016 Sport YBR-125 Running
1216
- 16 LG151- 09 YAMAHA YBR 2009 Ybr-125 YBR-125 E3D7E-017675 LBPKE- 390027769 To Be Boarded Off
1217
- 17 UDF 754A HONDA XL-125 2008 Sport XL125 5591853 5737722 Running
1218
- 18 LG0049 -030 SIMBER - 156 2019 Sport 156 FMI 2K090848 LB412Y53K00 90848 New ( Paicho Sub. Cty)
1219
- 19 LG0136 -09 TOYOTA 2008 D/Cabin 2KD- Planning Unit
1220
-
1221
- REG. NO. MAKE MODEL/YE AR Type EGINE MODEL ENGINE NO. CHASS NO. Remarks
1222
- S/N
1223
-
1224
-
1225
-
1226
-
1227
-
1228
-
1229
-
1230
-
1231
-
1232
-
1233
-
1234
-
1235
-
1236
-
1237
- 1 UG 1830W KOMAT’S U GD6125(20 17) Motor Grader 6D125 6D125-117292 KMTGDO28AH A001763 Running
1238
- 2 UG 1929W KOMAT’S U WA250 (2017) Wheel Loader SAA6D102 FF-2 6D102- 26497752 KMTWA0207H A72905 Running
1239
-
1240
- 3 UG 2425W SAKAI SV520D(20 17) Vibrator Roller Running
1241
- 4 UG 2291W FUSO 6D16 (2017) Water Bowser 6D16- A71562 FM657F- A45427 Running
1242
- 5 UG 2558 W FUSO 6D16(2017) TruckDumper 6D16- A71562 FM657F- A45427 Running
1243
- 6 UG 2307W FUSO 6D16 (2017) Dumper Truck 6D16- A70605 FM657F- A45226 Running
1244
-
1245
-
1246
-
1247
-
1248
- Appendix II(b): Summary of Sale: Motorcycles
1249
-
1250
- S/N Asset No Of Assets Costs
1251
- 1 Motorcycles 04 400.000
1252
- 2 Motor vehicles 16 84,027.340
1253
- 3 Assorted scraps - 1,500,000
1254
- Grand total 85,927,340
1255
-
1256
-
1257
-
1258
-
1259
- Lot No Asset No Of Assets Costs
1260
- 1 BMK motorcycle UG 2868 M 100,000
1261
- 2 JIALING Motorcycle UG 3300 M 50,000
1262
- 3 BMK-L80 Motorcycle UG 2869 M 100,000
1263
- 4 YAMAHA Motorcycle UG 3617 M 150,000
1264
- TOTAL 400,000
1265
-
1266
-
1267
-
1268
-
1269
- Lot No Asset No Of Assets Costs
1270
- 6 Toyota Land Cruiser LG 1492 M 7,100,000
1271
- 7 Toyota Land Cruiser LG 1064-09 8,000,000
1272
- 8 Pick –up Nissan Hard Body Double Cabin LG 0129-09 7,175,600
1273
- 9 Isuzu Tipper Truck UR O531 26,000,000
1274
- 10 Suzuki Samurai 398 UZU 2,000,000
1275
- 11 Pick –up Nissan Hard Body Double Cabin UAJ 083 Z 2,000,000
1276
-
1277
-
1278
-
1279
-
1280
-
1281
-
1282
-
1283
-
1284
-
1285
-
1286
-
1287
-
1288
-
1289
-
1290
- 12 Suzuki KB Double Cabin Pick-up 700,000
1291
- 13 Toyota Hilux LG 0069-09 860,000
1292
- 14 Toyota Hilux 1,000,000
1293
- 15 Suzuki Station Wagon LG 0017-09 1,050,000
1294
- 16 Toyota Hilux Double Cabin Pick- up LG 0068-09 3,110,000
1295
- 17 Toyota Hilux Double Cabin Pick up LG 065-09 9,950,000
1296
- 18 Tipper Truck Zeifang LG 0063-09 5,627,740
1297
- 19 Tipper Truck Zeifang LG 0064-09 5,234,000
1298
- 20 Bedford Truck 3,000,000
1299
- 21 Bedford flat bed UA 0180 1,220,000
1300
- 22 Assorted scraps 1,500,000
1301
- Sub-Total 85,527,340
1302
- 400,000
1303
- Grand Total 85,927,340
1304
-
1305
-
1306
-
1307
-
1308
- Appendix III: Procurements- COVID-19
1309
-
1310
- Invoice Number Paymen t Date Suppli er Description /Purpose EFT / Check Number Invoice Amount Distribution Amount Remarks
1311
- HEL/57/06 /20 18/06/20 20 Elvis Okello Roman son Payment to facilitate e- meetings for COVID-19. 30057044 2,500,00 0 2,500,000 Procurement approved by contracts committee, Stores records posted.
1312
- HEL/85/06 /20 25/06/20 20 Onyayi Willia m Who Payment for purchase of required items for institutional quarantine centre for COVID-19 under COVID-19 funding. 30515430 4,000,00 0 4,000,000 Procurement approved by contracts committee, Stores records posted.
1313
- HEL/86/06 /20 25/06/20 20 Aber J enifer Payment for logistics for COVID-19 activities under COVID-19 funding 30515432 4,000,00 0 4,000,000 Procurement approved by contracts committee, Stores records posted.
1314
-
1315
-
1316
-
1317
-
1318
-
1319
-
1320
-
1321
-
1322
-
1323
-
1324
-
1325
-
1326
-
1327
-
1328
- HEL/85/06 /20 25/06/20 20 Elvis Okello Roman son Payment for purchase of required items for institutional quarantine centre for COVID-19 under COVID-19 funding. 30515452 1,000,00 0 1,000,000 Procurement approved by contracts committee, Stores records posted.
1329
- HEL/86/06 /20 25/06/20 20 Muloya Felix Payment for logistics for COVID-19 activities under COVID-19 funding 30515403 4,215,00 0 4,215,000 Procurement approved by contracts committee, Stores records posted.
1330
- HEL/86/06 /20 25/06/20 20 Anena Grace Payment for logistics for COVID-19 activities under COVID-19 funding 30515442 4,000,00 0 4,000,000 Procurement approved by contracts committee, Stores records posted.
1331
- HEL/85/06 /20 25/06/20 20 Tabu Cosma s Payment for purchase of required items for institutional quarantine centre for COVID-19 under COVID-19 funding. 30515443 4,000,00 0 4,000,000 Procurement approved by contracts committee, Stores records posted..
1332
- Total 23,715,000
1333
-
1334
-
1335
-
1336
-
1337
- S/N Item Descriptions Unit of Quantity Quantity Unit Price Value (UGX)
1338
- Measure Received Issued
1339
- A FOOD ITEMS
1340
- 1 Posho-Maize Flour Kgs 117,905 117,905 2,200 259,391,000
1341
- 2 Beans-kg Kgs 54,000 54,000 3,500 189,000,000
1342
- 3 spicedcartonrice 36pkt per Boxes 75 75 3,200 240,000
1343
- 4 Rice-kg Kgs 3,637 3,637 3,000 10,911,000
1344
- 5 Corn Soya Blend-kgs Kgs 1,782 1,782 3,200 5,702,400
1345
-
1346
-
1347
-
1348
-
1349
-
1350
-
1351
-
1352
-
1353
-
1354
-
1355
-
1356
-
1357
-
1358
-
1359
- 6 Cooking Oil-Litre Liters 1,834 874 7,000 12,838,000
1360
- 7 Table salt -500g Kgs 2,109 2,109 600 1,265,400
1361
- 8 Baking Flour-Kg Kgs 228 228 5,000 1,140,000
1362
- 9 Baking Powder-carton Ctns 4 4 500 2,000
1363
- 10 Eggs-1 piece Pcs 192 192 9,000 1,728,000
1364
- 11 Silver Fish-Lacede-small fish-kg Pcs 115 115 3,000 345,000
1365
- 12 Sugar Kgs 3,182 3,182 4,000 12,728,000
1366
- B DISINFECTANTS 0
1367
- 1 Laundry Bar Soaps-Blue (600-800g) 1 10,315 9,115 2,000 20,630,000
1368
- 2 liquid soap in liters Jerrycans 416 354 14,219 5,915,200
1369
- 3 Alcohol-based HandSanitizer-20litres Ltrs 14 10 122,000 1,708,000
1370
- 4 Alcohol-based HandSanitizer- bottles Bottles 641 613 14,000 8,974,000
1371
- 5 Bathing Soap-Skin Guard- 55g Cartons 2 2 2,000 4,000
1372
- 6 Alcohol Swaps/Pads-100piece Piece 40 40 3,500 140,000
1373
- 7 Dettol Liquid Soap-250 ml 250ml 4 4 2,000 8,000
1374
- 8 Hand Wash-moisturizer with Dispenser 500 ml 50 6 2,000 100,000
1375
- 9 Disinfectant-no description -Liters Ltrs 140 125 20,000 2,800,000
1376
- 10 Sodium Hypochlorite3.5% Sltion 750 ml 666 666 10,000 6,660,000
1377
- 11 Sodium3.5%Hypochlorite 250 ml 108 108 5,500 594,000
1378
- 12 Sodium Hypochlorite 6% Solution 5ltrs 19 19 65,000 1,235,000
1379
- C MEDICAL EQUIPMENTS 0
1380
- 1 InfraredDigitalThermometer- Pcs 52 47 650,000 33,800,000
1381
- 2 Hand washingWith Stands And CansFacility Set 518 417 35,000 18,130,000
1382
- 3 SAMPLE Carriers Pcs 12 6 55,000 660,000
1383
- 4 Bottle Sprayer-1 Liter Pcs 210 208 6,000 1,260,000
1384
- 5 Small Radio-Leotec Pcs 350 350 20,000 7,000,000
1385
- 6 Basin-20ltr Pcs 50 50 5,000 250,000
1386
- 7 Jerry Can-5litres Pcs 1,007 1,007 8,000 8,056,000
1387
- 8 Bathing Bucket Plastic-10 Liters Pcs 20 20 5,000 100,000
1388
- 9 Sprayer-Manuel -16 Liters Pcs 4 4 45,000 180,000
1389
- 10 Dust Bin 240'950 Ltr) Pcs 10 4 14,000 140,000
1390
- 11 Sharp8ts (7.24)Container-Plastic Pcs 7 - 5,000 35,000
1391
- 12 Mega Phones Pcs 44 44 75,000 3,300,000
1392
- D PersonalEquipmentsProtective 0
1393
- 1 InspectionPieceGlove-100 Pcs 600 47 1,000 600,000
1394
- 2 Safety Goggle Pcs 1,007 769 10,000 10,070,000
1395
- 3 Aprons Disposables Pcs 827 455 5,000 4,135,000
1396
-
1397
-
1398
-
1399
-
1400
-
1401
-
1402
-
1403
-
1404
-
1405
-
1406
-
1407
-
1408
-
1409
-
1410
- 4 Face Shield-Disposable Protective Pcs 1,048 76 5,000 5,240,000
1411
- 5 Surgical Glove-Latex 7 1/2 =100 Pieces Pcs 25 25 140,000 3,500,000
1412
- 6 Examination Gloves-Medium Pcs 356 287 2,000 712,000
1413
- 7 Heavy Duty Gloves-1 Pair Pcs 50 15 5,200 260,000
1414
- 8 Surgical Masks Pcs 57,530 56,500 500 28,765,000
1415
- 9 Respirator N95 Pcs 570 490 2,200 1,254,000
1416
- 10 Face Mask Ffp 1piece Pcs 200 200 2,200 440,000
1417
- 11 Cloth Masks-Ug Pcs 259,493 252,113 1,000 259,493,000
1418
- 12 Theatre Gown-Disposable 1 Piece Pcs 182 167 20,000 3,640,000
1419
- 13 Coverall-DisposablePiece1 Pcs 247 37 20,000 4,940,000
1420
- 15 Suit Re-Usable - 1 Pices Pcs 40 40 20,000 800,000
1421
- 16 Ebola Pvc Boots-1 Pair Pcs 52 29 4,000 208,000
1422
- E Bedding Materials Pcs 0
1423
- 1 Blanket 4'x 6' 1 Piece Pcs 60 60 2,100,000
1424
- 2 Bed Sheet 4'x 6' 1 Piece Pcs 80 80 20,000 1,600,000
1425
- 3 Mattress 3 and 4 Inch Pcs 140 140 85,000 11,900,000
1426
- 4 Motorcycle -Honda Dt No 2 2 11,000,000 22,000,000
1427
- 5 Fuel Ltrs 1,437.84 3,700 5,320,000
1428
- TOTAL 983,947,000
1429
-
1430
-
1431
-
1432
-
1433
- Appendix V: Under Staffing
1434
-
1435
- APPROVED STAFF ESTABLISHMENT FOR GULU DISTRICT LOCAL GOVERNMENT
1436
- Job Title Approved Filled Vacant
1437
- Officer Of The Chief Administrative Officer 3 2 1
1438
- Administration Department 29 26 3
1439
- Finance Department 14 12 2
1440
- Planning Department 4 1 3
1441
- Works Department 18 16 2
1442
- Education Department 7 6 1
1443
- Community Based Services Department 8 7 1
1444
- Gulu Juvenile Centre/Remand Home 12 3 9
1445
- Natural Resources Department 9 7 2
1446
- Production Department 16 7 9
1447
- Trade, Commerce, Industry and Local Economic Development Department 6 2 4
1448
- Health Services Department 10 8 2
1449
- 136 97 39
1450
- Approved Staff Establishment For Sub County Gulu District Local Government
1451
- Job Title Approved Filled Vacant
1452
-
1453
-
1454
-
1455
-
1456
-
1457
-
1458
-
1459
-
1460
-
1461
-
1462
-
1463
-
1464
-
1465
-
1466
- 1 Sub County Chief /SAS 6 6 0
1467
- 2 Veterinary Officer 6 3 3
1468
- 3 Agricultural Officer 6 6 0
1469
- 4 Fisheries Officer 6 0 6
1470
- 5 Community Development Officer 6 6 0
1471
- 6 Assistant Animal Husbandry Officer 6 1 5
1472
- 7 Assistant Agricultural Officer 6 0 6
1473
- 8 Assistant Fisheries Development Officer 3 1 2
1474
- 9 Assistant Entomological Officer 3 2 1
1475
- 10 Senior Accounts Assistant 6 6 0
1476
- 11 Accounts Assistant 6 6 0
1477
- 12 Parish Chief 25 25 0
1478
- 14 Office Typist 6 0 6
1479
- 15 Office Attendant 6 0 6
1480
- Sub-Total 97 62 35
1481
- GRAND TOTAL 233 159 74
1482
- PERCENTAGE 100% 68% 32%
1483
-
1484
-
1485
-
1486
-
1487
-
1488
-
1489
-
1490
-
1491
-
1492
-
1493
-
1494
-
1495
-
1496
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
reports/Gulu DLG Report of Auditor General 2021/Gulu DLG Report of Auditor General 2021.chunks.json DELETED
The diff for this file is too large to render. See raw diff
 
reports/Gulu DLG Report of Auditor General 2021/Gulu DLG Report of Auditor General 2021.md DELETED
@@ -1,878 +0,0 @@
1
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6778.jpg)
2
-
3
- ##### THE REPUBLIC OF UGANDA
4
-
5
- ##### REPORT OF THE AUDITOR GENERAL ON THE FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
6
-
7
- **FOR THE FINANCIAL YEAR ENDED 30 TH JUNE 2021**
8
-
9
- ---
10
-
11
- Table of Contents
12
- List of Acronyms - iii
13
- Opinion - 1
14
- Basis for Opinion - 1
15
- Key Audit Matters - 1
16
- 1.0 Payroll Management - 1
17
- Emphasis of Matter - 8
18
- 2.0 Outstanding Payables (Deposits received) - 8
19
- 3.0 Long Outstanding Receivables - 8
20
- Other Matter - 8
21
- 4.0 Implementation of the approved budget - 9
22
- 5.0 Implementation of Uganda Road Fund (URF) - 15
23
- 6.0 Follow up of implementation of prior year UGIFT projects - 16
24
- FOLLOW UP OF NUSAF 3 PROJECT IMPLEMENTATION 17 7.0
25
- 8.0 Payment of advances to personal Accounts - 18
26
- Other Information - 18
27
- Management Responsibilities for the Financial Statements - 19
28
- Auditor’s Responsibilities for the Audit of the Financial Statements - 19
29
- Other Reporting Responsibilities - 20
30
- Report on the Audit of Compliance with Legislation - 20
31
- Appendix 1: Non/ Underpayment of pension and gratuity - 22
32
- Appendix 2: Delayed removal of staff from payroll - 25
33
- Appendix 3: Un-authorised loans deductions - 26
34
- Appendix 4: Delayed remittance of Deductions to UCLA/UBA - 27
35
- Appendix 5: Delayed remittance of PAYE deductions to URA - 28
36
- Appendix 6: Omission of Political leaders’ and commissioner’s gratuity from the computation of
37
- PAYE - 29
38
- Appendix 7: Payment of salaries, pension and gratuity off the IPPS - 30
39
- Appendix 8: Inconsistencies between interface files and payroll registers - 32
40
- Appendix 9: Evaluation of the achievement of planned out puts - 35
41
- Appendix 10: NUSAF3 Inspections - 37
42
- Appendix 11: Advances to Personal accounts - 38
43
-
44
- ---
45
-
46
- ---
47
-
48
- ##### LIST OF ACRONYMS
49
-
50
- | ACDP | Agriculture Cluster Development Project |
51
- |---|---|
52
- | PRELNOR | Project for Restoration of Livelihood in Northern Region |
53
- | AIA | Appropriation in Aid |
54
- | CAO | Chief Administrative Officer |
55
- | DLG | District Local Government |
56
- | GoU | Government of Uganda |
57
- | HR | Human Resource |
58
- | INTOSAI | International Organization of Supreme Audit Institutions |
59
- | ISSAIs | International Standards of Supreme Audit Institutions |
60
- | LGFAM | Local Government Financial and Accounting Manual, 2007 |
61
- | LGFAR | Local Government Financial and Accounting Manual, 2007 |
62
- | LLG | Lower Local Governments |
63
- | MAAIF | Ministry of Agriculture, Animal Industry and Fishery |
64
- | PMU | Project Monitoring Unit |
65
- | MDAs | Ministries, Departments and Agencies |
66
- | MoFPED | District of Finance, Planning and Economic Development |
67
- | MoGLSD | Ministry of Gender, Labour and Social Development |
68
- | MoH | Ministry of Health |
69
- | MoLG | Ministry of Local Government |
70
- | NAA | National Audit Act |
71
- | NTR | Non-Tax Revenue |
72
- | NUSAF | Northern Uganda Social Action Fund |
73
- | OAG | Office of the Auditor General |
74
- | PDU | Procurement & Disposal Unit |
75
- | PFMA | Public Finance Management Act |
76
- | PFMR | Public Finance Management Regulations |
77
- | PPDA | Public Procurement & Disposal of Public Assets |
78
- | PBS | Program Budgeting System |
79
- | PS/ST | Permanent Secretary / Secretary to the Treasury |
80
- | TI | Treasury Instructions |
81
- | TSA | Treasury Single Account |
82
- | TSSA | Treasury Sub Single Account |
83
- | UCF | Uganda Consolidated Fund |
84
- | UgIFT | Uganda Intergovernmental Fiscal Transfers Program for Results |
85
- | UGX | Uganda Shilling |
86
- | UWEP | Uganda Women Empowerment Project |
87
- | YLP | Youth Livelihood Program |
88
-
89
-
90
- ---
91
-
92
- ##### REPORT OF THE AUDITOR GENERAL ON THE AUDIT OF FINANCIAL STATEMENTS OF GULU DISTRICT LOCAL GOVERNMENT
93
-
94
- **FOR THE FINANCIAL YEAR ENDED 30 TH JUNE 2021**
95
-
96
- ##### THE RT. HON. SPEAKER OF PARLIAMENT
97
-
98
- ##### Opinion
99
-
100
- I have audited the accompanying financial statements of the which comprise the Statement of Financial Position as at 30 th June 2021, the Statement of Financial Performance, Statement of Changes in Equity and Statement of Cash Flows together with other accompanying statements for the year then ended, and notes to the financial statements, including a summary of significant accounting policies.
101
-
102
- In my opinion, the financial statements of Gulu District Local Government for the financial year ended 30 th June 2021 are prepared, in all material respects, in accordance with Section 51 of the Public Finance Management Act, 2015 and the Financial Reporting Guide, 2018.
103
-
104
- ##### Basis for Opinion
105
-
106
- I conducted my audit in accordance with International Standards of Supreme Audit Institutions (ISSAIs). My responsibilities under those standards are further described in the Auditor’s Responsibilities for the Audit of the Financial Statements Section of my report. I am independent of the District in accordance with the Constitution of the Republic of Uganda 1995 (as amended), the National Audit Act, 2008, the International Organization of Supreme Audit Institutions (INTOSAI) Code of Ethics, the International Ethics Standards Board for Accountants Code of Ethics for Professional Accountants (Parts A and B) (IESBA Code), and other independence requirements applicable to performing audits of Financial Statements in Uganda. I have fulfilled my other ethical responsibilities in accordance with the IESBA Code, and in accordance with other ethical requirements applicable to performing audits in Uganda. I believe that the audit evidence I have obtained is sufficient and appropriate to provide a basis for my opinion.
107
-
108
- ##### Key Audit Matters
109
-
110
- Key audit matters are those matters that, in my professional judgment, were of most significance in my audit of the financial statements of the current period. These matters were addressed in the context of my audit of the financial statements as a whole, and in forming my opinion thereon, and I do not provide a separate opinion on these matters.
111
-
112
- ---
113
-
114
- As a result, I considered payroll management in LGs a Key Audit Matter and identified crosscutting risks including; unrealistic budgeting for employees and pension costs, under absorption of wage funds, delayed access to the payroll, over payment of salaries, non-payment of salary and pension arrears, among others.
115
-
116
- I analysed the approved budget and releases to Gulu District for salary, pension and gratuity in the period under review, as shown below;
117
-
118
- ##### Table showing Breakdown of Gulu DLG Budget and releases for the year
119
-
120
- | **Category** | **Initial budget (UGX) (Bn)** | **Revised budget (UGX) (Bn)** | **Amount released (UGX) (Bn)** | **%age funding received** |
121
- |---|---|---|---|---|
122
- | Salary | 17.978 | 18.270 | 17.978 | 97.4 |
123
- | Pension | 3.418 | 3.418 | 3.418 | 100 |
124
- | Pension arrears | 0.462 | 0.462 | 0.462 | 100 |
125
- | Gratuity | 0.798 | 0.798 | 0.798 | 100 |
126
- | **Total** | **22.656** | **22.948** | **22.656** | **98.7** |
127
-
128
-
129
- The wage and Pension Pay roll of UGX. 22.948 constituted 53.6% of the District’s budget
130
-
131
- ## for 2020/2021 of UGX.42.3Bn.
132
-
133
- I am aware that the Covid-19 Pandemic continues to significantly affect the implementation of payroll management activities. A number of districts did not carry out planned recruitments resulting into huge unspent balances.
134
-
135
- ### Based on the audit procedures performed, I made the following significant audit findings;
136
-
137
- | **No** | **Observations** | **Recommendations** |
138
- |---|---|---|
139
- | 1.1 | **Budgeting for Salary, Pension and Gratuity** i) **Submission of wage estimates** Paragraph 2.2 of the Establishment Notice No. 2 of 2019, required LGs to submit salary, pension and gratuity estimates for the subsequent year to Ministry of Public (MoPS) by the 30 th of September of the previous year. I noted that the District delayed to submit wage estimates to MoPS, as required. The submission was made on 14 th January 2020 which is 106 days after the required date. This may lead to wage shortfalls/over provision due to lack of clarity and analysis of wage estimates by MoPS. The Accounting Officer attributed the delayed submission to the health condition of the Head of Human Resource Management Sector, whose absence created a gap in the sector. | I advised the Accounting Officer to always submit wage estimates to MoPS by 30 th September of the preceding year. |
140
- | 1.2 | **Payment of Salaries, Pension and Gratuity** i) **Absorption of Funds** I reviewed funds absorption and noted that UGX.17.686 billion (81%) was spent out of the total receipts of UGX.22.656 billion, resulting in an unabsorbed balance of UGX. 4.97 billion. The unabsorbed balance was subsequently swept back to the consolidated fund account. | advise the Accounting Officer MoPS and MoFPED to reconcile the district payroll with the wage bill always provided and released to the I |
141
-
142
-
143
- ---
144
-
145
- || **Refer to the table below;** **Approved** **Estimates** **(A)** (UGX ’bns) (UGX ’bns)** **Releases/ Warrant (B)** 18.270 4.678 17.978 **4.678** **Expendi ture(C)** **Unspent (B-C)** **(UGX ’bns)** 14.566 3.120 **(UGX ’bns)** 3.412 1.558 **% absorpti on** 81 66.7 **22.948 22.656 17.686 4.97 78** Wage Pensio/ Gratuity **Total** under absorption of funds, denied the use of funds for other deserving service delivery areas. The Accounting Officer explained that the under absorption was caused by excess funds released/warranted to the district. The |<|<|<|<|<|<|<|<|<|<|<|<| district to remove the excess funds released to the District over the years. |
146
- |---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
147
- ||^|<|<|<|<|<|<|<|<|<|<|<|<|^|
148
- ||^|<|<|<|<|<|<|<|<|<|<|<|<|^|
149
- | Wage |^|<|<|<|<|<|<|<|<|<|<|<|<|^|
150
- | Pensio/ Gratuity |^|<|<|<|<|<|<|<|<|<|<|<|<|^|
151
- | **Total** |^|<|<|<|<|<|<|<|<|<|<|<|<|^|
152
- | under absorption of funds, denied the use of funds for other deserving service delivery areas. The Accounting Officer explained that the under absorption was caused by excess funds released/warranted to the district. The |^|<|<|<|<|<|<|<|<|<|<|<|<|^|
153
- || ii) **Under payment of pension/ gratuity** A review of the pension payroll data and IFMS payments, revealed variances between amounts on the payroll and payments to individual pensioners, leading to under payments of UGX.0.300 bn, contrary to article 254 (1) & (3) of the 1995 constitution (as amended). **Details in Appendix 1.** The underpayment of pension and gratuity negatively affect wellbeing retirees/ or their dependants. The Accounting Officer attributed this to various reasons ranging from delayed submission of letters of Administration by the beneficiaries to incorrect supplier and bank account numbers. |<|<|<|<|<|<|<|<|<|<|<|<| I advised the Accounting Officer to ensure that pension/gratuity is accurately paid. |
154
- || iii) **Payment of non-existent pensioners** UGX.987,066 was paid to one (01) purported pensioner that was neither on the IPPS payroll register nor possessed the necessary documentation to support the existence, contrary to Section (L - b) (2) of Uganda Public Service Standing Orders, 2010. Sn Supplier No **1.** 869976 Name Of Staff David Oyet Tidy Amount 987,066 Pension availed Remarks file not led to loss of funds to Government and over statement of pension expenditure. The Accounting Officer explained that Mr. David Oyet Tidy is not a pensioner of Gulu District; and that management was still trying to trace how the officer was paid as a pensioner on Gulu district site. This |<|<|<|<|<|<|<|<|<|<|<|<| I advised the Accounting Officer to recover funds from the purported pensioner. |
155
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|^|
156
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|^|
157
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|^|
158
- || iv) **Wrong computation of Gratuity** Paragraph (L-d) (3) provides that a public officer has an option to receive all his or her pension as an annuity or to commute a third (1/3) of his or her pension for a 15-year period and receive it as a lump sum at retirement. re-computation of gratuity benefits, I noted that the District had wrongly computed gratuity benefits for 01 pensioner although payment of UGX.8,351,004 was fully effected within the year under review. Through |<|<|<|<|<|<|<|<|<|<|<|<| I advised the Accounting Officer to recover the overpayment from the pensioner. |
159
-
160
-
161
- ---
162
-
163
- | However, the Human resource officer confirmed that the correct annual salary of the one (01) pensioner as per the salary structure is UGX. 2,844,832 and the length of service 285 months. If calculated correctly then the CPG amount should have been UGX. 7,101,771 instead of UGX. 8,351,004 leading to an overpayment of UGX. 1,249,233. This was attributed to error in the computation of the gratuity. |<|<|<|<|<|<|<|<|<|<||
164
- |---|---|---|---|---|---|---|---|---|---|---|---|
165
- | v) **Delayed deletion of staff from payroll** Section B-a (12) of the Uganda Public Standing Orders, 2010 requires the payment of salary to public officers to be stopped immediately they cease rendering services to Government under whatever circumstances, including death. I noted that UGX. 39,616,954 was paid to 11 staff who had either retired, transferred, absconded or died as detailed in **appendix 2.** These were payment for services not rendered to the District resulting in loss of funds to Government. The Accounting Officer attributed to; non- validation status, inconsistencies in dates of birth, on IPPS and National IDs and the conditions set by the MoPS for correction of date of birth is so difficult to fulfil for pensioners who were recruited in service long time. this |<|<|<|<|<|<|<|<|<|<| I advised the Accounting Officer to ensure prompt removal of staff from the payroll. |
166
- |^|<|<|<|<|<|<|<|<|<|<|^|
167
- | **Management of Payroll Deductions** i) **Over/Under remittance of deductions** Section B-a (17) requires a public officer’s individual contractual obligations such as hire purchase, loan, and contributions to saving schemes, trade unions and staff associations to be deducted from his or her salary, in accordance with the regulations. noted that whereas UGX.3,908,218,081 was deducted from employees’ salaries to be remitted to different beneficiaries, UGX.3,916,669,698 was remitted, leading to an over/under remittance of UGX.13,319,747 and UGX.4,868,130 respectively as shown in the table below. Sn Beneficiary Deduc tion code Payroll Deduction amount (UGX) Amount remitted as per IFMS (UGX) Variance **Over remittance (UGX)** **Under remittance (UGX)** 249 2,715,103,934 2,728,423,681 13,319,747 257 482 250 43,850,113 40,236,432 1,078,249,034 1,077,084,585 71,015,000 70,925,000 3,613,681 1,164,449 90,000 0 0 0 **3,908,218,081 3,916,669,698 13,319,747 4,868,130** over remittance was caused by error leading to overstatement of expenditure. The under remittance was caused by recovery for previous period 2019/2020, created obligation of UGX.4,868,130 at the year-end which may result in fines and penalties. **1. 2. 3.** **4.** URA UNATU UBA LST (District revenue collection account) **Total** I 1.3 The |<|<|<|<|<|<|<|<|<|<| advised the Accounting Officer to recover the overpayment and ensure that funds are remitted as top ups to whose underpaid. I |
168
- |^|<|<|<|<|<|<|<|<|<|<|^|
169
- |^|<|<|<|<|<|<|<|<|<|<|^|
170
- |^|<|<|<|<|<|<|<|<|<|<|^|
171
- |^|<|<|<|<|<|<|<|<|<|<|^|
172
- |^|<|<|<|<|<|<|<|<|<|<|^|
173
- |^|<|<|<|<|<|<|<|<|<|<|^|
174
- |^|<|<|<|<|<|<|<|<|<|<|^|
175
- |^|<|<|<|<|<|<|<|<|<|<|^|
176
- |^|<|<|<|<|<|<|<|<|<|<|^|
177
- |^|<|<|<|<|<|<|<|<|<|<|^|
178
-
179
-
180
- ---
181
-
182
- || The Accounting Officer acknowledged the issues of overpayment and further explained that underpayment was due to validation challenges during data capture. ||
183
- |---|---|---|
184
- || ii) **Un-authorised loans deductions** Section 2.1.2 & 2.1.4 of the service agreement between the Government (MoPS) and Uganda Consumer Lenders' Association/Uganda Bankers' Association requires a letter of undertaking for each Government employee before making an employee reservation on the PDMS. In addition, only deductions consented to by employees, in writing, should be submitted to the MoPS for timely monthly payroll processing or as advised by the employer.  I noted that the District made unauthorised loan deductions totalling UGX. 15,490,451. The deductions were from 42 employees that neither had letters of undertaking nor existed in the “active deduction” or the “my approval” reports on the PDMS-Payroll Deduction Management System, operated by PCA-Payroll Consults Africa as shown in **Appendix** **3.** There is a risk of making deductions from staff that have no loans, which defrauds them of their hard earned funds. The Accounting Officer did not provide response on the issue. | I advised the Accounting Officer to ensure that all loan applications are always backed by letters of undertaking and are approved through the PDMS. |
185
- || iii) **Delayed remittance of deductions to UCLA/UBA** Paragraph 4.6.1 of Establishment Notice No. 2 of 2019 requires payroll deductions to be remitted concurrently with salary payments.  I noted that the District made payroll deductions but did not remit concurrently with the salary payments in 11 out of 12 months. On average, it delayed by 25.3 days, as shown in **appendix 4.** Delayed remittance of deductions to UCLA/UBA could lead to delays in up- dating loan status with the various financial institutions causing un-necessary default charges on employees. The Accounting Officer acknowledged the issue and pledged to ensure timely/concurrent remittances. | that I advised the Accounting Officer to ensure all deductions to UCLA/UBA are remitted concurrently with salary payments. |
186
- || iv) **Delayed remittance of PAYE deductions to URA** Section 123(1) of the Income Tax Act, 1997 (as amended) requires withholding agents to URA any tax that has been withheld or that should have been withheld within fifteen days after the end of the month in which the payment subject to withholding tax was made by the withholding agent.  I noted delays in the remittance of PAYE deductions to URA ranging from 1 – 31 days, as shown in **appendix 5.** Delayed remittance of PAYE attracts fines and penalties from the Revenue Authority. The Accounting Officer acknowledged the issue and pledged to ensure timely/concurrent remittances. | I advised the Accounting Officer to ensure all deductions to URA are remitted concurrently with salary payments. that |
187
- || v) **Non deduction of PAYE from political leaders** I noted that the District did not subject political leaders’ gratuity totalling to UGX.36,733,861 to the computation of PAYE in IPPS, leading to an under deduction of UGX.11,003,344, contrary to section 19(1) (a) of the Income Tax Act. Details are shown in the **appendix 6.** | I advised the Accounting Officer to ensure that political leaders’ gratuity is subjected to tax by including in the gross taxable income when |
188
-
189
-
190
- ---
191
-
192
- || This denies Government the would be revenue. The Accounting Officer explained that the computation of PAYE on persons on payroll had solely been the responsibility of the Ministry of Public Service. The district receives a finalized payroll register report and the interface file for payment detailing all deductions to be paid; however, management pledged to consult further with the MoPS to avoid re-occurrence of the omission. |<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<| computing PAYE. |
193
- |---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
194
- | 1.4 | Month payroll was accessed Estimated variance in days Estimated variance in weeks **Access to Payrolls** i) **Delayed access to Salary Payroll** Section B-a (11) of the Uganda Public Standing Orders, 2010, requires Accounting Officers to ensure that Public Officers access the payroll within four (4) weeks from date of assumption of duty. I noted that two (02) newly transferred employees delayed to access payroll, with delays ranging between 4-8 weeks, as shown in the table below; Audit remarks Employee Name Assumptio n date Employe e ID S n 1\. 942244 2\. 187574 Total Average Charles Ocan Ray Sam Ojok Omara 14/04/202 1 14/4/2021 6/30/2021 6/30/2021 31 61 92 46 4 8 12 6 Delayed Delayed access to payroll leads to demotivation of the affected staff and accumulation of salary arrears. The Accounting Officer explained that the two officers transferred their services to the district, but failed to notify the district of their transfer in time. Delayed |<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<| I advised the Accounting Officer to ensure that newly transferred staff promptly access the payroll are subsequently paid. and |
195
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
196
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
197
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
198
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
199
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
200
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
201
- |^| ii) **Delayed access to Pension payroll** Paragraph 5.1 of establishment notice no. 1 of 2020 requires responsible officers to initiate and complete the processing of retirement benefits within six months to the mandatory retirement date. In case of death or early retirement, the process should be initiated immediately the Letters of Administration are issued and/or the early retirement has been granted. I noted that 05 pensioners delayed to access the pension payroll, with delays ranging between 01-6 months, as shown in the table below; **Estimated** **variance** in days** **Month payroll was accessed** **Retirement date/death date** **Employee Name** **Audit remarks** **Employe e ID** **Sn** 312337 Albert Ocaya 25/10/2020 31/03/2021 16/10/2020 31/03/2021 121 121 Delayed Delayed 1. 2. 3. 4. 272440 273075 273552 Kilama, Joseph Awor, Mary Langol Okech, Richard Lakot, Joyce Rev 9/1/2021 31/03/2021 31 Delayed 09/10/2020 31/05/2021 182 Delayed 5\. 661820 10/03/2020 31/10/2020 184 Delayed **Total Average** **639 42.6** access to the pension payroll leads to poor wellbeing of the affected retirees as well as accumulation of pension arrears. The delay to pay the above pensioners was caused by delayed submission of documents by pensioners. Delayed |<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<| I advised the Accounting Officer to ensure that pensioners promptly access the payroll are subsequently paid. and |
202
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
203
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
204
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
205
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
206
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
207
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
208
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
209
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
210
- |^|^|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|<|^|
211
-
212
-
213
- ---
214
-
215
- || The Accounting Officer explained that the affected pensioners had died and their families failed to avail names of administrators on time and some estates had over stayed for 15 years on the pension payroll after which their payment were stopped as per the Pension Act. ||
216
- |---|---|---|
217
- | 1.5 | **Internal Control Weaknesses** ||
218
- || i) **Monthly wage, pension and gratuity performance analysis and** **remittance of quarterly returns to MoPS** I noted that the District did not prepare monthly wage, pension and gratuity performance analysis and thus did not submit quarterly returns on payroll to MoPS, contrary to Paragraph 2.1 of Establishment Notice No. 1 of 2020. led to accumulations of arrears and under absorption of wage, pension and gratuity budget. Accounting Officer attributed this to the Human Resource Management sector was unable to undertake monthly wage, pension and gratuity performance analysis returns on the payroll to MoPS because of the health condition of the head of the sector, whose absence created staffing gap in the sector. This The | I advised the Accounting Officer to ensure that monthly wage, pension and gratuity performance analyses are undertaken and that quarterly returns on payroll are submitted to MoPS. |
219
- || ii) **Payments of salaries, pension & gratuity off IPPS** Paragraph 4.5 of Establishment Notice No. 2 of 2019 requires the responsible officer to pay for only salaries, pension and gratuity processed through IPPS. From a comparison of the payroll register and IFMS payment file. noted that 16 staff and 05 pensioners were paid a total of UGX. 114 million off the IPPS, as shown in **Appendix 7.** control weakness creates an opportunity for payment of salaries and pension to non-eligible persons, hence loss of funds to Government. The Accounting Officer explained that:- 1\. Mr. Opwonya Eric Mark Kafunzi is an employee who was being paid salary from Uganda Road Fund off the payroll. 2\. The interim chairpersons of the newly created Sub Counties had not been loaded on the IPPS; hence being paid off the IPPS. I This | I advised the Accounting Officer to ensure that salaries, pension and gratuity is processed and paid through the IPPS. |
220
- | 1.6 | **System related challenges** i) **Inconsistencies between MoPS and entity payroll registers** I observed that there were variances of UGX.35,994,412 between the figures in the MoPS IPPS and entity payroll register, as shown in **appendix 8.** The above undermines the integrity of the IPPS system and there is risk of manipulation and misappropriation of salary/pension funds due to lack of reconciliatory controls between the entity information and IPPS master data at MoPS. The Accounting Officer attributed the inconsistencies to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS due to validation challenges; hence, inconsistencies in the information on IPPS and NIS. | I advised the Accounting Officer to ensure that the entity IPPS payroll registers are consistent with MoPS payroll data. |
221
- || ii) **Effectiveness and reliability of the IPPS/NID interface** I the staff/pensioner/beneficiaries’ verification interface and noted the following; reviewed the effectiveness and reliability of IPPS/NID  There was adequate sensitization and training in the use and navigation of the system. | I advised the Accounting Officer to liaise with MoPS to ensure effective verification of the IPPS |
222
-
223
-
224
- ---
225
-
226
- - System was not reliable and effective as it does not generate and NID interface is information such as photographs and dates of birth from NID.
227
- carried.
228
- - Operational challenges were encountered such; as unreliable network and failure in generating information from the NID system.
229
-
230
- The ineffectiveness of the system may affect the integrity of the IPPS payroll. The Accounting Officer explained that this mandate lies with the MoPS.
231
-
232
- ##### Emphasis of Matter
233
-
234
- Without modifying my opinion, I would like to draw the readers’ attention to the following matters which have been disclosed in the financial statements of the District;
235
-
236
- ##### 2.0 Outstanding Payables (Deposits received)
237
-
238
- A review of the statement of financial position on page 19 of the financial statements revealed that the district had outstanding payables of UGX.1.211 bn (Deposits received UGX.1.100 bn and Trade creditors of UGX.0.111bn) by the end of the year. A detailed review of the categorization and aging of the payables in note 24 on page 36 of the financial statements revealed that out of the outstanding payables, UGX.0.95 bn relate to the previous financial years.
239
-
240
- These long outstanding payables may lead to litigation costs due to non or delayed settlement.
241
-
242
- I advised the Accounting Officer to prioritize full settlement of the long outstanding payables.
243
-
244
- ##### 3.0 Long Outstanding Receivables
245
-
246
- Included in the statement of financial position on page 11 of the Financial Statements is a long outstanding debtors amount of UGX.2.063 bn (Accrued revenue UGX.0.985 bn and Advances (YLP & UWEP) UGX.1.078 bn). However, there was no evidence that management made any effort to enforce recoveries. There is a risk that these funds may become uncollectible leading to a financial loss to the entity.
247
-
248
- Receivables represent an idle asset that denies the Council the opportunity to utilise the funds to implement planned activities.
249
-
250
- ---
251
-
252
- ##### 4.0 Implementation of the approved budget
253
-
254
- A review of the district’s approved work plans and budgets revealed that the Gulu District had an approved budget (revised) of UGX.42.3Bn, out of which UGX.30.9Bn was warranted/ availed by the end of the financial year. The total expenditure for the year was UGX.26.5Bn out of which UGX.18.9Bn 1 was spent on non-service delivery activities, such as employee costs and transfers to other units (i.e. Town-councils, sub-counties, schools), implying that only UGX.7.6Bn was available for direct implementation of service delivery outputs.
255
-
256
- Base on procedures undertaken, I made the following significant observations.
257
-
258
- | **No** | **Observation** | **Recommendation** |
259
- |---|---|---|
260
- | 4.1 | **Existence of Strategic plans that are aligned to NDP-III** Paragraph 5 of the budget execution circular for financial year 2020/2021 states that over the years the alignment of Government Budgets with the NDP has been poor and needs to be improved. Therefore, Accounting Officers must ensure that all activities for the Financial Year 2020/2021 are aligned with NDP III and implemented accordingly. This being the first year of implementation of the NDP-III, the entity was expected to prepare and approve a strategic plan that was aligned to NDP III. It is from this strategic plan that the annual plans would be based in order to achieve the objectives of NDP-III. noted that the entity had prepared and submitted the strategic plan to NPA and has been sent back for necessary corrections and awaiting approval at the time of audit. is a risk that activities implemented during the financial year 2020/2021 were not aligned to the NDP-III which negatively affects the achievement of NDP-III objectives. The Accounting Officer explained that the District had a draft strategic plan i.e. District Development plan III which was submitted to NPA for review. NPA has since returned the draft and management is incorporating the comments of NPA and a final Draft will be approved by council by the time of laying on table of the Budget for FY 2022/23. I There | the I advised the Accounting Officer to ensure approval of strategic plan that is aligned to NDP-III to facilitate the achievement of the NDP objectives. |
261
- | 4.2 | **Revenue Performance** ||
262
- | 4.2.1 | **Local Revenue (LR) Performance** I reviewed the approved Local revenue estimates for the financial year 2020/2021 and noted that the District budgeted to collect UGX.1.702Bn during representing (42.6%) performance. The shortfalls in Local Revenue collections of UGX.0.986Bn (57.4%) were recorded in Local Service Tax, Land Fees, Business Licence, other tax revenues and rent. the year but collected UGX.0.725Bn in NTR collections at vote level result in aggregate revenue shortfalls at treasury level which negatively affects the implementation of Shortfalls | advised the Accounting Officer to follow up Local revenue not collected from UNRA. I also advised the Accounting Officer to initiate measures I |
263
-
264
-
265
- ---
266
-
267
- || Accounting Officer explained that the Covid-19 pandemic impact that slowed down the economy and failure to collect compensation from UNRA for the District property affected by construction of OLWIYO to Sir Samuel Baker Road. planned activities at a Government-wide level. The |<|<|<|<|<|<|<| aimed at enhancing local revenue collection. |
268
- |---|---|---|---|---|---|---|---|---|---|
269
- | 4.2.2 | **Transfers from other Government Units/Other Government** **Transfers** The entity budgeted to receive UGX.8,937,648,668 as transfers from other Government Units out of which UGX.1,810,996,737 was received representing 20.3% performance as shown in the details below. S/ NO Revenue Source Approved Budget” (UGX) Total Receipts (UGX) Variance (UGX) 600,000,000 10,000,000 564,487,837 13,452,948 35,512,163 -3,452,948 920,969,000 9,844,000 465,339,440 7,063,319 455,629,560 2,780,681 50.5 71.8 %Per forma nce 94 135 0 0 3 50,000,000 0 0 577,190,074 50,000,000 -577,190,074 559,926,000 17,102,400 542,823,600 50,000,000 40,960,000 9,040,000 81.9 6,736,909,000 75,882,052 6,661,026,948 1.1 to NUSAF Support PLE-UNEB URF Uganda Women Entrepreneursh ip Program (UWEP) YLP UGFIT Unspent Balances Project for Restoration of Livelihood in Northern Region (PRELNOR) Neglected Tropical Diseases (NTDs) Agriculture Cluster Development Project (ACDP) Covid-19 (MPs fund) **Total** 10 0 49,518,667 -49,518,667 0 **8,937,648,000 1,810,996,737 7,126,651,263 20.3** **Extract from Q4 budget performance report & quarterly releases** Revenue shortfalls affect the implementation of planned activities. The Accounting Officer explained that; The Ministry (MAAIF) under the ACDP programme issued the District with change of management of the development component of the programme that would then be implemented by the ministry which caused a shortfall of UGX.6.60 Billion. 1 2 3 4 5 6 7 8 9  **Note:** |<|<|<|<|<|<|<| advised the Accounting Officer to always to roll over the affected program to the subsequent period. I |
270
- |^|^|<|<|<|<|<|<|<|^|
271
- |^|^|<|<|<|<|<|<|<|^|
272
- |^|^|<|<|<|<|<|<|<|^|
273
- |^|^|<|<|<|<|<|<|<|^|
274
- |^|^|<|<|<|<|<|<|<|^|
275
- |^|^|<|<|<|<|<|<|<|^|
276
- |^|^|<|<|<|<|<|<|<|^|
277
- |^|^|<|<|<|<|<|<|<|^|
278
- |^|^|<|<|<|<|<|<|<|^|
279
- |^|^|<|<|<|<|<|<|<|^|
280
- |^|^|<|<|<|<|<|<|<|^|
281
- |^|^|<|<|<|<|<|<|<|^|
282
- |^|^|<|<|<|<|<|<|<|^|
283
-
284
-
285
- ---
286
-
287
- |  The implementation modalities for YLP also changed causing further shortfalls.  Project for Restoration of Livelihood in Northern Region (PRELNOR) under-performances were attributed to deductions by PMU. |<|<|<|<|<|<|<|<||
288
- |---|---|---|---|---|---|---|---|---|---|
289
- | **Performance from external financing** The entity budgeted to receive UGX.3,254,000,000 as external/donor financing out of which UGX.196,516,003 was received representing 6.4% performance as shown in the details below. 4.2.3 318,000,000 80,000,760 237,999,240 25.1 %Per forma nce Donor Approved Variance Budget” (UGX) Total Receipts (UGX) 368,000,000 43,352,736 324,647,264 11.8 165,000,000 31,450,000 133,550,000 19 30,000,000 40,969,000 -10,969,000 136.6 158,000,000 74,629,314 83,370,686 47.2 2,215,000,000 0 2,215,000,000 0 **3,254,000,000 196,516,003 2,983,598,190** shortfalls affect the implementation of planned activities. The Accounting Officer explained that the underperformance in external financing was due to roll over of USAID program by the funders. United Nations Children Fund (UNICEF) United Nations Population Fund (UNPF) Global fund for HIV, TB and Malaria World Health Organisatio n (WHO) Global Alliance for Vaccines and Immunizati on (GAVI) United States Agency Internation al Developme nt (USAID) **Total** for S/ n 1 2 3 (UGX) Revenue |<|<|<|<|<|<|<|<| advised the Accounting Officer to ensure that unimplemented projects are rolled over to the subsequent year and implemented accordingly. I |
290
- |^|<|<|<|<|<|<|<|<|^|
291
- |^|<|<|<|<|<|<|<|<|^|
292
- |^|<|<|<|<|<|<|<|<|^|
293
- |^|<|<|<|<|<|<|<|<|^|
294
- |^|<|<|<|<|<|<|<|<|^|
295
- |^|<|<|<|<|<|<|<|<|^|
296
- |^|<|<|<|<|<|<|<|<|^|
297
- |^|<|<|<|<|<|<|<|<|^|
298
- |^|<|<|<|<|<|<|<|<|^|
299
- |^|<|<|<|<|<|<|<|<|^|
300
-
301
-
302
- ---
303
-
304
- | 4.3 | **Unremitted off -budget receipts** Paragraph 29 of the Budget Execution Circular for the Financial year states that in the event that an external agency provides funds in the course of implementation of the budget or any funds remain unspent at the expiry of an appropriation, these must be declared and a supplementary issued in line with the Public Finance Management Act 2015. noted that Gulu District received off-budget financing to a tune of UGX.249,984,529 directly from Enable-USAID funded project and Bank of Uganda for undertaking activities which was never declared to the Treasury and as such no supplementary appropriation was issued as guided by the PS/ST. **Details shown in table below;** **Entity Source Amount (UGX)** **Remarks** Gulu District Gulu District **Total** Enable-USAID Bank of Uganda 209,984,529 Not recognised 40,000,000 Not recognised **249,984,529** financing distorts planning, may result in duplication of activities and is also contrary to the Public Finance Management Act 2015. The Accounting Officer explained that the non-compliance was due to direct remittance of the funds by the funders to the beneficiary institutions. However, performance agreements for each health facility under RBF –result based financing was signed. I Off-budget |<|<|<|<|<|<|<|<|<|<| I advised the Accounting Officer to always adhere to the provisions of the law. |
305
- |---|---|---|---|---|---|---|---|---|---|---|---|---|
306
- |^|^|<|<|<|<|<|<|<|<|<|<|^|
307
- |^|^|<|<|<|<|<|<|<|<|<|<|^|
308
- |^|^|<|<|<|<|<|<|<|<|<|<|^|
309
- |^|^|<|<|<|<|<|<|<|<|<|<|^|
310
- |^|^|<|<|<|<|<|<|<|<|<|<|^|
311
- | 4.4 | **Absorption of funds** Out of the total receipts for the financial year of UGX.30.965Bn, UGX.26.047Bn was spent by the entity resulting in an unspent balance of UGX.4.918Bn (84.1%). The unspent balance at the end of the financial year was subsequently swept back to the consolidated fund account. Refer to table below; Year 2020/21 EST (UGX RELEASE (UGX) (bns) APP (B) (A) (bn) Expenditure (C) billions) (UGX Unspen t (B-C) (UGX billions) % absorption 42.284 30.965 26.047 4.918 84.1 absorption of released funds results in non-implementation of planned activities and negates the purpose for which funds were disbursed. The funds were meant for activities that were not fully implemented by the end of the financial year and these include; 1\. Non-recruitment of staff due to the fact the District Service Commission members' tenure expired. Under |<|<|<|<|<|<|<|<|<|<| I the advised the Accounting Officer to make a follow up of unspent funds and ensure they are re-voted to undertake the recruitment exercise and rehabilitation and construction of the schools. |
312
- |^|^|<|<|<|<|<|<|<|<|<|<|^|
313
- |^|^|<|<|<|<|<|<|<|<|<|<|^|
314
- |^|^|<|<|<|<|<|<|<|<|<|<|^|
315
- |^|^|<|<|<|<|<|<|<|<|<|<|^|
316
-
317
-
318
- ---
319
-
320
- | 2\. UGIFT fund meant for the Rehabilitation of Sir Samuel Baker School whose contractor was not contracted by MoES and Construction of Palaro Seed Secondary School whose contractor performed poorly The Accounting Officer attributed the under absorption of released funds to COVID-19 pandemic which affected the recruitment process coupled with the absence of the District Service Commission whose membership would not warrant the recruitment process to be completed. |<|<|<|<|<|<|<|<|<|<||
321
- |---|---|---|---|---|---|---|---|---|---|---|---|
322
- | **Quantification of outputs/activities** The Accounting Officer is required to submit quarterly performance reports by the 30 th day of the first month of the following quarter. These reports should clearly indicate the actual performance against the planned outputs and performance for each quarter, showing the quantity/quality and physical location of the reported outputs against expenditure. 4.5 of the two (2) outputs with a total of five (5) activities and expenditure of UGX.0.93Bn sampled for assessment I reviewed the extent of quantification of outputs and activities and noted the following;  One (1) output with a total of three (3) activities and expenditure worth UGX.0.304Bn were fully quantified. That is, all the three (3) activities (100%) within these outputs were clearly quantified to enable assessment of performance.  One (1) output with a total of two (2) activities and expenditure worth UGX.0.629Bn were insufficiently quantified. I observed that out of the two (2) activities, one (1) activity (50%) was quantified while one (1) activity (50%) was not clearly quantified to enable assessment of performance. of **Table showing Extent of Quantification by activities** Summary of Performance by Outputs Category No. outputs of out puts sam pled Activity details-Analysis Total No. of no of Fully activit Quant ies in ified the activit outpu ies ts % propo rtion to total expen diture % of total out- puts sampl ed No of activit ies not fully quanti fied Expen diture UGX (Bn) Fully quantified outputs 2 Insufficiently quantified outputs 3 Outputs 4 not quantified Total 1 1 0 2 50% \*\* 50% \*\* 0% \*\* 100 0.304 32.7 % 0.629 0 0.933 67.3 % 0% \*\*\* 100 3 2 0 5 3 1 0 4 0 1 0 1 % of quantifi cation of activitie s categor y output 100% per of 50% \*\*\*\* 0% Out |<|<|<|<|<|<|<|<|<|<| advised the Accounting Officer to follow up on the unreleased funds and also ensure outputs and activities are quantified during the budget process. I |
323
- |^|<|<|<|<|<|<|<|<|<|<|^|
324
- |^|<|<|<|<|<|<|<|<|<|<|^|
325
- |^|<|<|<|<|<|<|<|<|<|<|^|
326
- |^|<|<|<|<|<|<|<|<|<|<|^|
327
- |^|<|<|<|<|<|<|<|<|<|<|^|
328
- |^|<|<|<|<|<|<|<|<|<|<|^|
329
- |^|<|<|<|<|<|<|<|<|<|<|^|
330
- |^|<|<|<|<|<|<|<|<|<|<|^|
331
-
332
-
333
- ---
334
-
335
- | I observed that in cases where outputs were not quantified at all, management reported performance in a generic manner such as; Biology, Physics, Chemistry, ICT School equipment without specifying number/quantities achieved. to plan and report on the quality/quantity of activities implemented renders it difficult to establish the reasonableness of costs for each planned output which curtails effective accountability. I could not ascertain the level of achievement of these outputs. Accounting Officer acknowledged the issue and pledged to follow up the unreleased funds to ensure pending activities are worked on. Failure The |<|<|<|<|<|<|<|<|<|<||
336
- |---|---|---|---|---|---|---|---|---|---|---|---|
337
- | **Implementation of Quantified outputs** I assessed the implementation of one (1) output that was fully quantified with a total of three (3) activities worth UGX. 0.304Bn and noted the following;  One (1) output with a total of three (3) activities worth UGX. 0.304Bn was partially implemented. Out of the three (3) activities within these outputs, the entity fully implemented two (2) activities (66.7%), one (1) activity (33.3%) was partially implemented. 4.6 **Showing level of implementation of Fully Quantified outputs** No of activ ities that were not impl eme nted 0 Extent of imple menta tion of activiti es per catego ry of output 0 0 0 0 Fully implemented outputs 5 Partially Implemented outputs 6 Outputs Not Implemented 7 Total 0 0% 0 0% 1 0 100 % 0% 0 0% 1 100 0.304 100 0 3 0 3 0 2 0 2 0 1 0 1 0.304 100% 0 66.7% of planned activities implies that the expected services to the beneficiary communities were not attained. For example, the entity did not work on;  4km of Cet kana-Pugwinyi Road. Details in **Appendix 9.** % propor tion to total expen diture Activity details-Analysis Total No No. no of of Of activiti Fully parti es impl ally eme impl nted eme activ nted ities activ ities Summary of Performance by Output Category of No output of outp uts Expen diture UGX % of impl eme ntati on Bn **Table** Non-implementation |<|<|<|<|<|<|<|<|<|<| advise that Accounting Officer to make a follow up of released funding in order to implement the pending activities. un I |
338
- |^|<|<|<|<|<|<|<|<|<|<|^|
339
- |^|<|<|<|<|<|<|<|<|<|<|^|
340
- |^|<|<|<|<|<|<|<|<|<|<|^|
341
- |^|<|<|<|<|<|<|<|<|<|<|^|
342
- |^|<|<|<|<|<|<|<|<|<|<|^|
343
- |^|<|<|<|<|<|<|<|<|<|<|^|
344
- |^|<|<|<|<|<|<|<|<|<|<|^|
345
- |^|<|<|<|<|<|<|<|<|<|<|^|
346
- |^|<|<|<|<|<|<|<|<|<|<|^|
347
-
348
-
349
- ---
350
-
351
- | The Accounting Officer acknowledged the issue and pledged to follow up the unreleased funds to ensure pending activities are worked on. |<|<|<|<|<|<||
352
- |---|---|---|---|---|---|---|---|
353
- | 4.7 **Submission of Quarterly Performance Reports** The Accounting Officer is required to submit quarterly performance reports by the 30 th day of the first month of the following quarter. I noted that the entity submitted performance reports for Q1, Q2, Q4 after the deadline given for submission of the reports as indicated in the table below No Details Deadline for submission Actual date of submission Comment (submitted time/ delayed) in Quarter One 31/10/2019 November 2020 Delayed Quarter Two 31/01/2020 February 2021 Delayed Quarter Three 30/04/2020 June 2021 Delayed Quarter Four 31/07/2020 September 2021 Delayed to submit performance reports in time are not only contrary to the circular standing instructions but it also affects timely evaluation of performance. The Accounting Officer attributed the delay to the upgrade of the Programme Based Budgeting system to take care of NDP III Programmes by MoFPED; and this process went on up to the end of the financial year. 1 2 3 4 Failure |<|<|<|<|<|<| advise the Accounting Officer to ensure that performance reports are prepared and submitted in time. I |
354
- |^|<|<|<|<|<|<|^|
355
- |^|<|<|<|<|<|<|^|
356
- |^|<|<|<|<|<|<|^|
357
- |^|<|<|<|<|<|<|^|
358
- |^|<|<|<|<|<|<|^|
359
- |^|<|<|<|<|<|<|^|
360
- |^|<|<|<|<|<|<|^|
361
-
362
-
363
- ##### 5.0 Implementation of Uganda Road Fund (URF)
364
-
365
- **5.1**
366
-
367
- ##### Preparation of Quarterly Reports
368
-
369
- All designated agencies shall adhere to and observe the principles of quarterly reporting and accountability to URF on physical and financial progress as per timelines in **table below.** The reporting formats for accountability must be completed in both hard and soft copy and submitted as per agreed timelines. (Format as per annex 8 of URF budgeting and operational guidelines)
370
-
371
- ---
372
-
373
- ##### 5.1.1 Delayed reporting and Accountability to Uganda Road Fund (URF)
374
-
375
- I noted that the performance reports were not submitted to Uganda Road Fund (URF) within the stipulated timelines as shown in the table below;
376
-
377
- | S/n | Description | Deadline | Actual date submitted |
378
- |---|---|---|---|
379
- | 1.0 | Quarter 1 (one) | Accountabilities 15 th day of October 2020 | 2 nd February 2021 |
380
- | 2.0 | Quarter 2 (two) | Accountabilities 15 th day of January 2021 | 2nd February 2021 |
381
- | 3.0 | Quarter 3 (three) | Accountabilities 15 th day of April 2021 | 17 th August 2021 |
382
- | 4.0 | Quarter 4 (four) | Accountabilities 15 th day of July 2021 | 17 th August 2021 |
383
-
384
-
385
- Failure to submit reports and accountability within the stipulated timeline defeats the purpose of reporting and hinders any meaning full assessments by other external parties.
386
-
387
- The Accounting Officer explained that the delay was caused by the Covid-19 lock down.
388
-
389
- I advised the Accounting Officer to adhere to the reporting timelines so as enable stakeholders to carry out timely assessments.
390
-
391
- **6.0**
392
-
393
- ##### Follow up of implementation of prior year UGIFT projects
394
-
395
- **6.1**
396
-
397
- ##### Delayed physical progress of the works on Palaro Seed Secondary School
398
-
399
- During the audit, I noted that the planned commencement date of works was 13 th May 2019 and completion date by 13 th May 2020 as per the contract agreement. A review of the Contracts Committee minutes for the meeting held on 7 th June 2021 under minute GDLG 10/CC03/2020-2021, a decision was reached to grant an extension up to 31 st August 2021.
400
-
401
- Despite this extension, the works were not completed by the time of field inspection on 2 nd September 2021. A review of the progress report revealed that planned works were behind schedule by 15 months. It was also noted at the time of site inspection that the contractor had abandoned the site and the workers had been idle for five months. Level of implementation is shown in the photos below.
402
-
403
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6743.jpg)
404
-
405
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6744.jpg)
406
-
407
- ---
408
-
409
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6746.jpg)
410
-
411
- ######### On-going construction works
412
-
413
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6747.jpg)
414
-
415
- ######### On- going construction works
416
-
417
- An interview with management attributed the delays to low capacity of the contractor in terms of man power, machinery and abandonment of the site due to multiple contracts of similar magnitude being under taken in other districts.
418
-
419
- The Accounting Officer promised to raise the issue with the relevant Ministries.
420
-
421
- I advised the Accounting Officer to follow up the matter with the relevant Ministries and ensure completion of the works.
422
-
423
- **7.0**
424
-
425
- ##### FOLLOW UP OF NUSAF 3 PROJECT IMPLEMENTATION
426
-
427
- **7.1**
428
-
429
- ##### Inactive Community Monitoring Groups (CMGs)
430
-
431
- Section 7.3.4 (e) of NUSAF Operational Manual requires the Community Monitoring Groups (CMG) to monitor implementation of the sub project to ensure satisfactory social accountability and receive grievances from beneficiary community.
432
-
433
- However, a review of project files revealed no evidence of existence of the Community Monitoring Groups reports to facilitate Government in assessment of project performance. Details are shown in the table below and in **appendix 10.**
434
-
435
- | Sub County | Parish/Village | Project Name | Comments |
436
- |---|---|---|---|
437
- | Paicho | Kiceke | Kiceke Waripe Tree Planting. Value:UGX. 29,000,000 | No evidence on file to show that the Community Monitoring Group was performing its duties. |
438
- | Unyama | Tugu Village.Paibona Parish | Tugu Oboke Tree Planting. | No evidence on file to show that the Community Monitoring Group was performing its duties. |
439
- | Patiko | Te-Landwong Village. | Te-Ladwong P/S Institutional Greening Value: UGX. 50,000,000 | No evidence on file to show that the Community Monitoring Group was performing its duties. |
440
-
441
-
442
- ---
443
-
444
- Pawel Parish.
445
-
446
- Absence of effective Community Monitoring Groups (CMGs) negatively affects the implementation of the projects as beneficiaries grievances are not timely communicated to the relevant authorities.
447
-
448
- The Accounting Officer acknowledged the issue but explained that the CMGs were expected to report to multiple stakeholders as indicated in the operational manual 7.3.3 (e), iv as and when the need arises. In this instance however most of the CMGs reports were channelled to Inspectorate of Government who was overseeing the STAAC component as indicated in section 7.3.3 (c).
449
-
450
- I advised the Accounting Officer to raise the issue with relevant Ministries so that the anomaly is addressed in the subsequent NUSAF funding.
451
-
452
- **8.0**
453
-
454
- ##### Payment of advances to personal Accounts
455
-
456
- According to the letter from PSST of Ref. HRM/222/01 dated 9 th August 2012 and one from the Accountant General dated 17 th December 2018 to all Accounting Officers prescribed that all payments for works, supplies and general services should be paid direct to the beneficiaries/suppliers through the IFMS and all payments to beneficiaries whose master data is not on the entity’s IFMS site, for activities such as workshop facilitation and any other one off payment can be made through the E-Cash platform to the beneficiary’s mobile account.
457
-
458
- It was however noted that advances to a tune of UGX.34,450,000 were paid to various staff personal bank accounts to carry out official activities contrary to the above provisions as shown in **Appendix 11.**
459
- There is a risk of not paying the beneficiaries the right amounts at the right time and loss of money through theft or deductions by banks for those accounts servicing loans.
460
-
461
- The Accounting Officer pledged to follow up with MoFPED to ensure the E-cash mode of payment is implemented.
462
-
463
- I advised the Accounting Officer to always carry out sensitization of target beneficiaries on importance of E-Cash platform and encourage them open mobile money/bank accounts so as to foster efficiency and convenience in execution of cash payments.
464
-
465
- ---
466
-
467
- In connection with my audit of the financial statements, my responsibility is to read the other information and, in doing so, consider whether the other information is materially consistent with the financial statements or my knowledge obtained in the audit, or otherwise appears to be materially misstated. If, based on the work I have performed, I conclude that there is a material misstatement of this other information; I am required to report that fact. I have nothing to report in this regard.
468
-
469
- ##### Management Responsibilities for the Financial Statements
470
-
471
- Under Article 164 of the Constitution of the Republic of Uganda, 1995 (as amended) and Section 45 of the Public Finance Management Act, 2015, the Accounting Officer is accountable to Parliament for the funds and resources of the District.
472
-
473
- The Accounting Officer is also responsible for the preparation of financial statements in accordance with the requirements of the Public Finance Management Act, 2015 and for such internal control as management determines necessary to enable the preparation of financial statements that are free from material misstatement whether due to fraud or error.
474
-
475
- In preparing the financial statements, the Accounting Officer is responsible for assessing the District’s ability to continue as a going concern, disclosing, as applicable, matters related to going concern and using the going concern basis of accounting, unless the Accounting Officer has a realistic alternative to the contrary.
476
-
477
- The Accounting Officer is responsible for overseeing the District’s financial reporting process.
478
-
479
- ##### Auditor’s Responsibilities for the Audit of the Financial Statements
480
-
481
- My objectives are to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error and to issue an auditor’s report that includes my opinion. Reasonable assurance is a high level of assurance but is not a guarantee that an audit conducted in accordance with ISSAIs will always detect a material misstatement, when it exists. Misstatements can arise from fraud or error and are considered material if, individually or in aggregate, they could reasonably be expected to influence the economic decisions of users, taken on the basis of these financial statements.
482
-
483
- As part of an audit in accordance with ISSAIs, I exercise professional judgement and maintain professional scepticism throughout the audit. I also;
484
-
485
- - Identify and assess the risks of material misstatement of the financial statements, whether due to fraud or error, design and perform audit procedures responsive to those risks, and obtain audit evidence that is sufficient and appropriate to provide a basis for my opinion. The risk of not detecting a material misstatement resulting from fraud is higher than for one resulting from error, as fraud may involve collusion, forgery, intentional omissions, misrepresentations, or the override of internal control.
486
- - Obtain an understanding of internal control relevant to the audit in order to design audit procedures that are appropriate in the circumstances, but not for the purpose of expressing an opinion on the effectiveness of the Districts’ internal control.
487
- - Evaluate the appropriateness of accounting policies used and the reasonableness of accounting estimates and related disclosures made by the management.
488
-
489
- ---
490
-
491
- - Conclude on the appropriateness of management’s use of the going concern basis of accounting and, based on the audit evidence obtained, whether a material uncertainty exists related to events or conditions that may cast significant doubt on the District’s ability to continue as a going concern. If I conclude that a material uncertainty exists, I am required to draw attention in my auditor’s report to the related disclosures in the financial statements or, if such disclosures are inadequate, to modify my opinion. My conclusions are based on the audit evidence obtained up to the date of my auditor’s report. However, future events or conditions may cause the District to cease to continue as a going concern.
492
- - Evaluate the overall presentation, structure and content of the financial statements, including the disclosures, and whether the financial statements represent the underlying transactions and events in a manner that achieves fair presentation.
493
-
494
- I communicate with the Accounting Officer regarding, among other matters, the planned scope and timing of the audit and significant audit findings, including any significant deficiencies in internal control that I identify during my audit.
495
-
496
- I also provide the Accounting Officer with a statement that I have complied with relevant ethical requirements regarding independence, and to communicate with them all relationships and other matters that may reasonably be thought to bear on my independence, and where applicable, related safeguards.
497
-
498
- From the matters communicated with the Accounting Officer, I determine those matters that were of most significance in the audit of the financial statements of the current period and are therefore the key audit matters. I describe these matters in my auditor’s report unless law or regulation precludes public disclosure about the matter or when, in extremely rare circumstances, I determine that a matter should not be communicated in my report because the adverse consequences of doing so would reasonably be expected to outweigh the public interest benefits of such communication.
499
-
500
- ##### Other Reporting Responsibilities
501
-
502
- In accordance with Section 19 (1) of the National Audit Act, 2008, I report to you, based on my work described on the audit of Financial Statements, that; except for the matters raised in compliance with legislation section below, and whose effect has been considered in forming my opinion on financial statements, the activities, financial transactions and information reflected in the financial statements that have come to my notice during the audit, are in all material respects, in compliance with the authorities which govern them.
503
-
504
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6751.jpg)
505
-
506
- ---
507
-
508
- ---
509
-
510
- ##### Appendix 1: Non/ Underpayment of pension and gratuity
511
-
512
- | SN. | Name | Supplier No. | Employee No. | IPPS payroll register Amount | Interface files/IFMS Amount | Variance | Remarks |
513
- |---|---|---|---|---|---|---|---|
514
- || **Non Payment** |||||||
515
- | 1. | JAMES OTTO | 274093 | 159608 | 928,480 | \#N/A | 928,480 | On IPPS but not paid on IFMS |
516
- | 2. | SIMON ONEKALIT | 329130 | 159709 | 3,668,592 | \#N/A | 3,668,592 | On IPPS but not paid on IFMS |
517
- | 3. | JOSEPH KOMAKECH || 871238 | 5,181,410 | \#N/A | 5,181,410 | On IPPS but not paid on IFMS |
518
- | 4. | JAKARIA THOMAS ODONGO || 885783 | 8,386,032 | \#N/A | 8,386,032 | On IPPS but not paid on IFMS |
519
- | 5. | JUSTIN OBUNYA || 914707 | 2,631,744 | \#N/A | 2,631,744 | On IPPS but not paid on IFMS |
520
- | 6. | JACINTO OKEMA || 998191 | 306,531 | \#N/A | 306,531 | On IPPS but not paid on IFMS |
521
- | 7. | ESTATE OF THE LATE OYAT SATURNINO OYWELO GEORGE || 999379 | 1,756,160 | \#N/A | 1,756,160 | On IPPS but not paid on IFMS |
522
- | 8. | TARCISIA ABU ABODO || 1019420 | 1,051,548 | \#N/A | 1,051,548 | IFMS On IPPS but not paid on |
523
- | 9. | GEORGE OTTORACH || 1040492 | 63,296 | \#N/A | 63,296 | IFMS On IPPS but not paid on |
524
- | 10. | ESTATE OF ONEKALIT SIMON MAX OJOK BILLY BOB || 1045615 | 5,197,172 | \#N/A | 5,197,172 | IFMS On IPPS but not paid on |
525
- | 11. | ALEXANDER || 1048767 | 7,738,290 | \#N/A | 7,738,290 | On IPPS but not paid on |
526
-
527
-
528
- 22
529
-
530
- ---
531
-
532
- || LANGOL |||||| IFMS |
533
- |---|---|---|---|---|---|---|---|
534
- | 12. | WINNIE ASIIMWE || 1049839 | 123,190,080 | \#N/A | 123,190,080 | On IPPS but not paid on IFMS |
535
- | 13. | ESTATE OF THE LATE OKIDI OCHORA PONTIUS LANYERO AGNES JOLLY || 1083323 | 5,146,400 | \#N/A | 5,146,400 | On IPPS but not paid on IFMS |
536
- || **Sub Total** ||| **165,245,735** | \#N/A | **165,245,735** ||
537
- |||||||||
538
- || **Under/non- payments** |||||||
539
- | 14. | JACK OMOL || 143749 | 1,691,910 | 1,522,719 | 169,191 | Underpayment |
540
- | 15. | WILSON ALIKER || 159633 | 2,971,350 | 1,782,810 | 1,188,540 | Non-payment |
541
- | 16. | JULIUS OTTO || 159762 | 4,077,400 | 2,854,180 | 1,223,220 | Non-payment |
542
- | 17. | NIGHTY ADOCH || 746394 | 1,300,160 | 917,760 | 382,400 | Under/non-payment |
543
- | 18. | OCHORA OKIDI || 825723 | 10,292,800 | 6,175,680 | 4,117,120 | Under/non- payment |
544
- | 19. | ANDREW ONEN || 879069 | 1,562,500 | 937,500 | 625,000 | Under/non- payment |
545
- | 20. | FORTUNATE WANDA KOMAKECH || 884556 | 3,131,250 | 2,818,125 | 313,125 | Under/non- payment |
546
- | 21. | VALENTINO OKWONGA || 891113 | 2,073,240 | 207,324 | 1,865,916 | Under/non- payment |
547
- | 22. | PONSIANO KOMAKECH || 891198 | 1,924,529 | 101,291 | 1,823,238 | Under/non- payment |
548
- | 23. | PHILIP ADONGA || 891225 | 832,850 | 582,995 | 249,855 | Under/non- payment |
549
- | 24. | ONYUT M OKELLO || 891227 | 1,204,875 | 1,071,000 | 133,875 | Under/non- payment |
550
- | 25. | AUGUSTINE AMITO OLOYA || 904195 | 1,052,592 | 789,444 | 263,148 | Under/non- payment |
551
-
552
-
553
- 23
554
-
555
- ---
556
-
557
- | 26. | CONSTANTINO OCAN || 908194 | 3,970,284 | 330,857 | 3,639,427 | Under/non- payment |
558
- |---|---|---|---|---|---|---|---|
559
- | 27. | CELESTINO LANEK || 909199 | 4,362,202 | 4,326,648 | 35,554 | Under paid |
560
- | 28. | ALFRED ODOCH || 912244 | 5,156,556 | 4,726,843 | 429,713 | Under/non- payment |
561
- | 29. | OKOT OPOKA || 940958 | 3,583,880 | 2,508,716 | 1,075,164 | Under/non- payment |
562
- | 30. | ESTATE OF THE LATE OJOK OMOTAI AYAA LUCY || 999742 | 40,596 | 20,298 | 20,298 | Under paid |
563
- | 31. | ESTATE OF LATE OJWANG SIMON BONGOMIN OROMA SANTA || 1017837 | 1,005,212 | 927,888 | 77,324 | Under/non- payment |
564
- | 32. | ESTATE OF THE LATE OCEN PAUL AKULLU JANE || 1017893 | 508,272 | 296,492 | 211,780 | Under/non- payment |
565
- | 33. | ESTATE OF THE LATE ANGULU THOMAS OPIO DANIEL || 1066040 | 118,966,383 | 2,105,600 | 116,860,783 | Under/non- payment |
566
- || **Sub total** ||| **169,708,841** | **35,004,170** | **134,704,671** ||
567
- || **Grand Total** ||| **334,954,576** | **35,004,170** | **299,950,406** ||
568
-
569
-
570
- 24
571
-
572
- ---
573
-
574
- ##### Appendix 2: Delayed removal of staff from payroll
575
-
576
- | SN. | Name | Reason why they should have been removed | IPPS NO | Supplier no | Expected date removal of | Date removal of | Extra months paid | Monthly pay | Amount paid in the extra months |
577
- |---|---|---|---|---|---|---|---|---|---|
578
- | 1 | Odagi Martin Abwoch Oneka | Retirement | 746646 | 272455 | 11/7/2020 | Sep 2020 | 1 | 349,385 | 349,385 |
579
- | 2 | Okech Richard | Retirement | 310021 | 273552 | 9/10/2020 | Mar 2021 | 2 | 608,662 | 1,217,324 |
580
- | 3 | Kinyera Thomas | Retirement | 159693 | 273904 | 13/11/202 0 | Mar 2021 | 3 | 722,113 | 2,166,339 |
581
- | 4 | LUTARA OKWONGA | Retirement | 1004629 | 613500 | 22/10/202 0 | Jul 2021 | 8 | 608,662 | 4,869,296 |
582
- | 5 | Olanyakene Mark | Retirement | 159774 | 273532 | 5/12/2020 | Jul 2021 | 6 | 924,815 | 5,548,890 |
583
- | 6 | Awor Mary Langol | Retirement | 160396 | 273075 | 9/1/2021 | Mar 2021 | 2 | 645,772 | 1,291,544 |
584
- | 7 | ALBERT OCAYA | Retirement | 599128 | 312337 | 25/10/202 0 | Feb 2021 | 3 | 730,976 | 2,192,928 |
585
- | 8 | BERNARD MCMOGGIE ODONG | Retirement | 159734 | 274027 | 26/12/202 0 | July 2021 | 6 | 918,282 | 5,509,692 |
586
- | 9 | GEORGE ALBERT OKELLO | Retirement | 869847 | 273934 | 17/9/2020 | July 2021 | 9 | 1,009,624 | 9,086,616 |
587
- | 10 | KILAMA JOSEPH | Retirement | 1034580 | 803506 | 16/10/202 0 | July 2021 | 8 | 772,702 | 6,181,616 |
588
- | 11 | LAKOT (REV) JOYCE | Retirement | 159217 | 661820 | 3/10/2020 | Dec 2020 | 2 | 601,662 | 1,203,324 |
589
- || **Total** |||||||| **39,616,954** |
590
-
591
-
592
- 25
593
-
594
- ---
595
-
596
- ##### Appendix 3: Un-authorised loans deductions
597
-
598
- | S/No | Employee Name | Employee Number | Supplier number | IPPS Deductions | PDMS Deductions | Random No |
599
- |---|---|---|---|---|---|---|
600
- | 1 | Justine Ojok | 825935 || 1,289,835 | \#N/A | 0.606997511 |
601
- | 2 | Hilda Aryemo | 147355 || 67,996 | \#N/A | 0.439527882 |
602
- | 3 | Abonnus Labeja | 309885 || 145,224 | \#N/A | 0.035352648 |
603
- | 4 | Byron Okee | 159087 || 67,996 | \#N/A | 0.609931853 |
604
- | 5 | Mikricky Owiny | 247274 || 2,489,112 | \#N/A | 0.828779082 |
605
- | 6 | Lucy Akello | 994840 || 67,996 | \#N/A | 0.775120954 |
606
- | 7 | Jennifer Alaroker | 143993 || 67,996 | \#N/A | 0.770008506 |
607
- | 8 | Felix Okello | 160594 || 67,996 | \#N/A | 0.262570356 |
608
- | 9 | William Komakech | 147893 || 67,996 | \#N/A | 0.906253129 |
609
- | 10 | Joyce Achan | 160021 || 117,624 | \#N/A | 0.64059267 |
610
- | 11 | Luke Ociti | 704359 || 67,996 | \#N/A | 0.113304279 |
611
- | 12 | Veronica Auma | 144118 || 73,620 | \#N/A | 0.466404706 |
612
- | 13 | Tom Odiye | 700783 || 157,368 | \#N/A | 0.298940234 |
613
- | 14 | Maurensio Ojok | 147854 || 67,996 | \#N/A | 0.970637121 |
614
- | 15 | Joyce Ajok | 160552 || 64,536 | \#N/A | 0.245895805 |
615
- | 16 | Felix Ocaya | 160156 || 67,996 | \#N/A | 0.400588223 |
616
- | 17 | Martin Okema | 159881 || 112,080 | \#N/A | 0.021833506 |
617
- | 18 | Bosco Opiyo | 143220 || 73,620 | \#N/A | 0.654418013 |
618
- | 19 | Michael Odong | 641964 || 857,382 | \#N/A | 0.444855466 |
619
- | 20 | Stephen Komakech | 995007 || 67,996 | \#N/A | 0.099653465 |
620
- | 21 | Jennifer Lanyero | 144153 || 67,996 | \#N/A | 0.059757928 |
621
- | 22 | Thomas Onyutta | 434634 || 112,080 | \#N/A | 0.182971559 |
622
- | 23 | Somon Obwoya | 798864 || 533,596 | \#N/A | 0.603251471 |
623
- | 24 | Jackline Lapaco | 143854 || 67,996 | \#N/A | 0.845525853 |
624
- | 25 | Geoffrey Mukasa | 147791 || 67,996 | \#N/A | 0.960418771 |
625
- | 26 | Violet Anyeko | 160360 || 68,184 | \#N/A | 0.594792195 |
626
- | 27 | Mary Lanyero | 147322 || 67,996 | \#N/A | 0.793449317 |
627
- | 28 | Michael Kibwota | 159742 || 67,996 | \#N/A | 0.096969004 |
628
- | 29 | Milton Odong | 874088 || 496,002 | \#N/A | 0.008657317 |
629
- | 30 | Flavia Alimocan | 160202 || 81,600 | \#N/A | 0.446124022 |
630
- | 31 | Charles Oyamo | 148160 || 203,543 | \#N/A | 0.159245028 |
631
- | 32 | Godfrey Odong | 144948 || 256,524 | \#N/A | 0.206293665 |
632
- | 33 | Charles Adonga | 159899 || 1,907,795 | \#N/A | 0.216113714 |
633
- | 34 | Jefferson Oroma | 145288 || 67,996 | \#N/A | 0.868837491 |
634
- | 35 | Justine Chepkemboi | 348905 || 67,996 | \#N/A | 0.887428459 |
635
- | 36 | Benjamin Alimo Acellam | 874080 || 1,200,000 | \#N/A | 0.672933642 |
636
-
637
-
638
- ---
639
-
640
- | 37 | Judith Anenocan | 825805 || 1,044,000 | \#N/A | 0.435907185 |
641
- |---|---|---|---|---|---|---|
642
- | 38 | Francis Oyat | 289606 || 92,880 | \#N/A | 0.983577595 |
643
- | 39 | Michael Munu | 868741 || 598,362 | \#N/A | 0.064302509 |
644
- | 40 | Mary Ayo | 160270 || 45,268 | \#N/A | 0.308609085 |
645
- | 41 | Grace Makhame | 416221 || 94,104 | \#N/A | 0.801995443 |
646
- | 42 | Denish Opiyo | 955494 || 2,220,180 | \#N/A | 0.68101794 |
647
- || **Total** ||| **15,490,451** |||
648
-
649
-
650
- ##### Appendix 4: Delayed remittance of Deductions to UCLA/UBA
651
-
652
- | S/N. | Month (for which salary is paid) | Salary payment date | Loan (482) payment date | Variance (in days) | Remarks |
653
- |---|---|---|---|---|---|
654
- | 1 | July | 8/3/2020 | 8/31/2020 | 28 | Delayed |
655
- | 2 | August | 8/26/2020 | 9/21/2020 | 26 | Delayed |
656
- | 3 | September | 9/21/2020 | 10/26/2020 | 35 | Delayed |
657
- | 4 | October | 10/26/2020 | 11/16/2020 | 21 | Delayed |
658
- | 5 | November | 11/26/2020 | 12/16/2020 | 20 | Delayed |
659
- | 6 | December | 12/16/2020 | 2/15/2021 | 61 | Delayed |
660
- | 7 | January | 1/28/2021 | 3/3/2021 | 34 | Delayed |
661
- | 8 | February | 2/25/2021 | 3/25/2021 | 28 | Delayed |
662
- | 9 | March | 3/25/2021 | 4/14/2021 | 20 | Delayed |
663
- | 10 | April | 4/22/2021 | 4/22/2021 | 0 | Concurrent |
664
- | 11 | May | 5/25/2021 | 6/22/2021 | 28 | Delayed |
665
- | 12 | June | 6/22/2021 | 6/25/2021 | 3 | Delayed |
666
- || **Total** ||| **304** ||
667
- || **Average** ||| **25.3** ||
668
-
669
-
670
- ---
671
-
672
- ##### Appendix 5: Delayed remittance of PAYE deductions to URA
673
-
674
- | S/N | Month (for which salary is paid) | Salary payment date | Required payment date | PAYE payment date | Variance (In days) | Remarks |
675
- |---|---|---|---|---|---|---|
676
- | 1 | July | 8/3/2020 | 9/15/2020 | 9/7/2020 | 0 | In time |
677
- | 2 | August | 8/26/2020 | 9/15/2020 | 9/30/2020 | 15 | Delayed |
678
- | 3 | September | 9/21/2020 | 10/15/2020 | 10/29/2020 | 14 | Delayed |
679
- | 4 | October | 10/26/2020 | 11/15/2020 | 11/16/2020 | 1 | Delayed |
680
- | 5 | November | 11/26/2020 | 12/15/2020 | 12/18/2020 | 3 | Delayed |
681
- | 6 | December | 12/16/2020 | 1/15/2021 | 2/15/2021 | 31 | Delayed |
682
- | 7 | January | 1/28/2021 | 2/15/2021 | 3/3/2021 | 16 | Delayed |
683
- | 8 | February | 2/25/2021 | 3/15/2021 | 3/25/2021 | 10 | Delayed |
684
- | 9 | March | 3/25/2021 | 4/15/2021 | 4/14/2021 | 0 | In time |
685
- | 10 | April | 4/22/2021 | 5/15/2021 | 5/3/2021 | 0 | In time |
686
- | 11 | May | 5/25/2021 | 6/15/2021 | 6/15/2021 | 0 | In time |
687
- | 12 | June | 6/22/2021 | 7/15/2021 | 6/29/2021 | 0 | In time |
688
- || **Total** |||| **90** ||
689
- || **Average** |||| **7.5** ||
690
-
691
-
692
- ---
693
-
694
- ##### Appendix 6: Omission of Political leaders’ and commissioner’s gratuity from the computation of PAYE
695
-
696
- | Sn | Pay Code | Employee No. | Name | Base salary | DPOLGRAT | Total cost items | IPPS PAYE | Computed PAYE | PAYE variance |
697
- |---|---|---|---|---|---|---|---|---|---|
698
- | 1 | District Political Leaders | 825813 | Martin Ojara | 2,303,226 | 7,854,000 | 10,157,226 | 592,968 | 2,964,890 | \- 2,371,922 |
699
- | 2 | District Political Leaders | 825815 | David Ngole | 398,710 | 1,359,600 | 1,758,310 | 22,742 | 429,493 | \- 406,751 |
700
- | 3 | District Political Leaders | 825944 | Justine Toorach | 305,677 | 1,359,600 | 1,665,277 | 7,068 | 401,583 | \- 394,515 |
701
- | 4 | District Political Leaders | 825947 | Sanon Otika | 318,968 | 1,389,200 | 1,708,168 | 8,397 | 414,450 | \- 406,053 |
702
- | 5 | District Political Leaders | 825948 | Peter Okot | 318,968 | 1,359,600 | 1,678,568 | 8,397 | 405,570 | \- 397,173 |
703
- | 6 | District Political Leaders | 825950 | John Okwonga | 700,645 | 2,389,200 | 3,089,845 | 112,194 | 828,954 | \- 716,760 |
704
- | 7 | District Political Leaders | 874072 | Rose Amono | 620,000 | 2,046,000 | 2,666,000 | 88,000 | 701,800 | \- 613,800 |
705
- | 8 | District Political Leaders | 993556 | Patrick Kinyera | 620,000 | 2,046,000 | 2,666,000 | 88,000 | 701,800 | \- 613,800 |
706
- | 9 | District Political Leaders | 995429 | Margret Arach | 412,000 | 1,359,600 | 1,771,600 | 25,600 | 433,480 | \- 407,880 |
707
- | 10 | District Political Leaders | 995430 | Robinson Akena | 398,710 | 1,359,600 | 1,758,310 | 22,742 | 429,493 | \- 406,751 |
708
- | 11 | Chairperson District Service Commission (DSC) | 997233 | Simon Oola | 1,190,000 | 3,927,000 | 5,117,000 | 259,000 | 1,437,100 | \- 1,178,100 |
709
- | 12 | District Political Leaders | 1051943 | Lamex Akena | 620,000 | 2,046,000 | 2,666,000 | 83,500 | 701,800 | \- 618,300 |
710
- | 13 | District Political Leaders | 643137 | Philip Oketokeny | 1,716,346 | 8,238,461 | 9,954,807 | 416,904 | 2,888,442 | \- 2,471,538 |
711
- || **Total** ||| **9,923,250** | **36,733,861** | **46,657,111** | **1,735,512** | **12,738,855** | **-11,003,344** |
712
-
713
-
714
- 29
715
-
716
- ---
717
-
718
- ##### Appendix 7: Payment of salaries, pension and gratuity off the IPPS
719
-
720
- | Sn. | Supplier No | Employee No | Name Of Staff/Pensioner |<| Amount (UGX) | Remarks |
721
- |---|---|---|---|---|---|---|
722
- | Staff |<|<|<|<|<|<|
723
- | **1.** | 876730 || Opwonya Eric Mark Kafonzi | 938,000 |<| These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit. |
724
- | **2.** | 698807 || Christopher Opiyo Ateker | 2,263,800 |<| These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit. |
725
- | **3.** | 951627 || Prossy Auma | 16,552,200 |<| These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit. |
726
- | **4.** | 945572 || Richard Oryema 16380 | 16,552,200 |<| These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit. |
727
- | **5.** | 951271 || Vicky Atim | 1,180,900 |<| These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit. |
728
- | **6.** | 876730 || Opwonya Eric Mark Kafonzi | 938,000 |<| Paid from URF |
729
- | **7.** | 952371 || Francis Mayi | 662,200 |<| These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit |
730
- | **8.** | 948154 || Ballington Olweny Pongwech | 662,200 |<| These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit |
731
- | **9.** | 876730 || Opwonya Eric Mark Kafonzi | 938,000 |<| These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit |
732
- | 945571 || Richard Watmon | 16,552,200 |<| process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit These are political leaders who delayed to submit information to enable the |
733
- | 945631 || Patrick Lawoko | 16,552,200 |<| These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the |
734
-
735
-
736
- **10.**
737
-
738
- **11.**
739
- 30
740
-
741
- ---
742
-
743
- || interface. Files not availed at time of audit |
744
- |---|---|
745
- | 946222 |<|| Joyce Atto | 662,200 | These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit |
746
- | 947821 |<|| Lutada Ojara | 472,920 | These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit |
747
- | 947823 |<|| Collins Lawoko Barkit | 16,552,200 | These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit |
748
- | 854089 |<|| Okumu Richard 1047879 | 13,461,000 | These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit |
749
- | 946269 |<|| Phoebe Ayoo Janeth Obol | 756,840 | These are political leaders who delayed to submit information to enable the process of their access to IPPS to be done so were paid on IFMS by use of the interface. Files not availed at time of audit |
750
- || **Sub total** |<||| **105,697,060** ||
751
- | Pensioners |<|<|<|<|<|<|
752
- | **1.** |<| 78720 6 || Estate Of The Late Nelima Mildred Ngoya | 277,375 | Had issues with verification, payment was invoiced directly from IFMS outside the IPPS payroll. |
753
- | **2.** |<| 86997 6 || David Oyet Tidy | 987,066 | The officer is not a pensioner of Gulu DLG, management is yet trying to trace how the officer was paid as a pensioner on Gulu district site. |
754
- | **3.** |<| 19231 2 || Oloya Anthony | 1,118,688 | Pensioner paid off the IPPS |
755
- | **4.** |<| 17502 9 || Aciro Betty | 2,143,765 | Pensioner paid off the IPPS |
756
- | **5.** |<| 20068 9 || Omal Alphonse | 4,653,588 | Pensioner paid off the IPPS |
757
- ||<| **Sub total** ||| **9,180,482** ||
758
- | Grand Total |<|||| **114,877,542** ||
759
-
760
-
761
- **12. 13. 14. 15. 16.**
762
-
763
- 31
764
-
765
- ---
766
-
767
- ##### Appendix 8: Inconsistencies between interface files and payroll registers
768
-
769
- | S/n | Employee No | Name | IPPS Amount | Interface Amount | Variance | Remarks |
770
- |---|---|---|---|---|---|---|
771
- | 1 | 145648 | Watmon Opwonya | 5,385,950 | 6,591,910 | (1,205,960) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
772
- | 2 | 147679 | Moses Ouma | 2,758,180 | 5,078,045 | (2,319,865) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
773
- | 3 | 159254 | Bonds Ocaya | 12,057,853 | 14,813,041 | (2,755,188) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
774
- | 4 | 159788 | Tobson Odongo | 1,787,940 | 2,390,920 | (602,980) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
775
- | 5 | 746454 | Alfred Oyoo | 677,448 | 729,003 | (51,555) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
776
- | 6 | 746589 | Christine Achan | 2,751,396 | 4,828,068 | (2,076,672) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
777
- | 7 | 746593 | Susan Adong | 4,908,225 | 4,658,283 | 249,942 | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
778
- | 8 | 746596 | Joyce Alanyo | 1,003,268 | 2,520,420 | (1,517,152) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through |
779
-
780
-
781
- 32
782
-
783
- ---
784
-
785
- || the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
786
- |---|---|
787
- | 9 | 746659 | Milly Laker | 5,241,378 | 9,659,193 | (4,417,815) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
788
- | 10 | 746706 | Walter Ayella | 1,815,688 | 2,220,952 | (405,264) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
789
- | 11 | 825730 | Jenny Rose Akello Okilangole | 7,922,367 | 10,563,156 | (2,640,789) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
790
- | 12 | 979192 | Stella Ngomnono | 6,483,078 | 5,859,391 | 623,687 | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
791
- | 13 | 981167 | Julian Lawach | 21,487,058 | 20,497,283 | 989,775 | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
792
- | 14 | 981171 | Santo Opiro | 3,976,600 | 11,010,025 | (7,033,425) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
793
- | 15 | 995033 | Alfred Akena | 1,581,250 | 2,785,590 | (1,204,340) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
794
- | 16 | 1007627 | Evarline Acio | 3,610,914 | 6,654,224 | (3,043,310) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the |
795
-
796
-
797
- 33
798
-
799
- ---
800
-
801
- || information on IPPS and NIS. |
802
- |---|---|
803
- | 17 | 1008659 | Patrick Kilama | 831,936 | 2,298,449 | (1,466,513) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
804
- | 19 | 1046059 | Justine Kakembo | 405,969 | 1,511,503 | (1,105,534) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
805
- | 20 | 1046088 | Peace Ayikoru | 1,379,367 | 5,333,108 | (3,953,741) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
806
- | 22 | 1054822 | Robert Acaye | 5,988,784 | 5,447,690 | 541,094 | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
807
- | 23 | 1057746 | Geoffrey Drabile Tiedezu | 9,484,334 | 9,484,334 | (4,698,899) | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
808
- | 25 | 1074130 | Brenda Adong | 7,151,606 | 6,129,948 | 1,021,658 | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
809
- | 26 | 1074132 | Simon Lakony | 3,013,317 | 1,934,883 | 1,078,434 | The inconsistency is attributed to cases where some salary arrears as effected/ invoiced directly through the IFMS outside the IPPS. These are attributed to validation challenges due to inconsistencies in the information on IPPS and NIS. |
810
- || **Total** || **111,703,906** | **142,999,419** | **(35,994,412)** ||
811
-
812
-
813
- 34
814
-
815
- ---
816
-
817
- ##### Appendix 9: Evaluation of the achievement of planned out puts
818
-
819
- || **Planning** |<|<| **Release of funds and implementation** |<|<|<|<|<|<|<| **Monitoring and Evaluation** | **Reporting** |
820
- |---|---|---|---|---|---|---|---|---|---|---|---|---|---|
821
- | **Programme / Project** **(A)** | **Output (B)** | **Activities ( C)** | **Are there clear targets and performa nce indicators to measure performa nce quantifica tion (Yes/No) If no give reason (D)** | **Planne d Target for the Financi al year** **(E )** | **Budgeted amount UGX (‘000’)** **(F)** | **Revised budget** | **Amount released** | **Amount Spent** | **Achieved Target by Financial year end @ annual performa nce report** **(J)** | **Varianc e** **( K)** **K= (J- E)** | **Causes for the variances** | **Audit Conclusio n Fully, partially, or Not implemen ted** | **Was the activity reported on in the periodic monitoring reports- (Yes/No) If no give reason** | **Is the performance of the activity accurately reported in the annual performance reports- (Yes/No) If no give reason** |
822
- |^|^|^|^|^|^| **UGX (‘000’)** **(G )** | **UGX (‘000’) (H)** | **UGX (I )** |^|^|^|^|^|^|
823
- | **UGFIT** |||||||||||||||
824
- | **Education** | Secondary School Constructi on and Rehabilitat ion | Constructio n of Palaro Seed Secondary school. | Yes | Comple tion of existing structur es | 669,440.000 | Not revised | 425,680.011 | 425,680.01 1 | Partially done | Partially done | Contracto r a abandone d the site | Partially implemen ted | No report M&E | Yes |
825
- ||| Supply of computers and chemicals | No | Not quantifi ed | 0 || 203,995.920 | 203,995.92 0 | Not quantifie d | Not quantifi ed | Not quantified | Fully implemen ted | No report M&E | Not quantified |
826
- | **URF** ||||| 920,969.000 || 0 | 0 |||||||
827
- | **Works & Technical Services** | **Routine Mechaniz ed maintena nce** | Mechanized maintenanc e of Paicho- Patiko road (22.5 Km) | Yes | 22.5 km | 0 || 152,057.600 | 152,057.60 0 | 22.5 Km | 0 | No variance | Fully implemen ted | No report M&E | Yes |
828
- ||| Mechanised maintenance of Chome- Omel- Lapuda (18 Km) | Yes | 18 Km | 0 || 81,071.600 | 81,071.600 | 18 km | 0 | No variance | Fully implemen ted | No report M&E | Yes |
829
-
830
-
831
- 35
832
-
833
- ---
834
-
835
- ||| Mechanized maintenanc e of Cetkana- Pugwinyi (17.km) | Yes | 17 km | 0 || 71,315.000 | 71,315.000 | 13 km | 4 km | Works still ongoing | Partially implemen ted | No report M&E | Yes |
836
- |---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
837
- | **Grand Total** ||||| **1,590,409** || **934,120.13 1** | **934,120.13 1** |||||||
838
-
839
-
840
- 36
841
-
842
- ---
843
-
844
- ##### Appendix 10: NUSAF3 Inspections
845
-
846
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6769.jpg)
847
-
848
- **Laliya Cluster Strengthening Fund Group at their office**
849
-
850
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6771.jpg)
851
-
852
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6770.jpg)
853
-
854
- ##### Kiceke Waripe Tree Planting
855
-
856
- ![](assets_AuditReports%5CGulu%20District%5CGulu%20DLG%20Report%20of%20Auditor%20General%202021/img-6772.jpg)
857
-
858
- ##### Commercial Agro- Nursery & micro irrigation
859
-
860
- ---
861
-
862
- ##### Appendix 11: Advances to Personal accounts
863
-
864
- | Invoice Number | Description/Purpose | EFT / Check Number | Payment Date | Distribution Amount | Budget Line Charged | Account Code | Supplier |
865
- |---|---|---|---|---|---|---|---|
866
- | UNICEF/004/11/2020 | Payment to facilitate training of VHTs/LCs selection of participants based on hotspots and most-at-risk communities under UNICEF funding. | 33288018 | 12/2/2020 | 5,650,000 | 09-426-508051300- 00-00-9998-0000- 088154-263104 | 263104 | Onyayi William WHO |
867
- | WTS/21/06/2021 | Allowances for mechanized routine maintenance of CHOME-OMEL- LAPUDA ROAD | 37613121 | 6/29/2021 | 4,400,000 | 09-005-508070200- 00-00-0000-0000- 048158-263367 | 263367 | FRED OKELLO 1046156 |
868
- | HEL/07/11/20 | Payment to facilitate outreaches for integrated child days with GAVI support | 32670239 | 11/9/2020 | 4,100,000 | 09-451-508051300- 00-00-9998-0000- 088154-263104 | 263104 | Aber Jenifer |
869
- | HEL/07/11/20 | Payment to facilitate outreaches for integrated child days with GAVI support | 32670245 | 11/9/2020 | 4,100,000 | 09-451-508051300- 00-00-9998-0000- 088154-263104 | 263104 | Tabu Cosmas |
870
- | HEL/07/11/20 | Payment to facilitate outreaches for integrated child days with GAVI support | 32670244 | 11/9/2020 | 4,100,000 | 09-451-508051300- 00-00-9998-0000- 088154-263104 | 263104 | Anena Grace |
871
- | HEL/07/11/20 | Payment to facilitate outreaches for integrated child days with GAVI support | 32670242 | 11/9/2020 | 4,100,000 | 09-451-508051300- 00-00-9998-0000- 088154-263104 | 263104 | Muloya Felix |
872
- | HEL/03/11/20 | Payment of facilitation for District Level for measles/Rubella campaign extended days. implementation | 32647194 | 11/2/2020 | 4,000,000 | 09-445-508051300- 00-00-9998-0000- 088154-263104 | 263104 | Aber Jenifer |
873
- | UNICEF/007/12/2020 | Payment to facilitate deployment of sub county facilitators and supervisors to conduct community dialogue meeting under UNICEF funding. level | 33326950 | 12/7/2020 | 4,000,000 | 00-00-9998-0000- 088154-263104 09-426-508051300- | 263104 | Adong Susan Opio 746718 |
874
- | **Total** |||| **34,450,000** ||||
875
-
876
-
877
- 38
878
-