commit cbcd3666ae56390f282deac6a2dd032d2449e7ce Author: Frederik Benoist Date: Sat Jul 8 08:44:32 2023 +0200 Initial version diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..ee954be Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6769e21 --- /dev/null +++ b/.gitignore @@ -0,0 +1,160 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ \ No newline at end of file diff --git a/backit html.py b/backit html.py new file mode 100644 index 0000000..750f691 --- /dev/null +++ b/backit html.py @@ -0,0 +1,106 @@ +from fogbugz import FogBugz +import sys +from jinja2 import Template +import os +import urllib + +def main(): + + S_FOGBUGZ_URL = 'https://mobileretail.fogbugz.com/' + S_EMAIL = 'frederik.benoist@gfi.fr' + S_PASSWORD = '6brOc-gAr6' + MAX_BUGS = 10 + + TEMPLATE_FILE = '/Users/fbenoist68/Code/python/fogbugz/fbBackupTemplate.html' + + fb = FogBugz(S_FOGBUGZ_URL) + fb.logon(S_EMAIL, S_PASSWORD) + + resp = fb.search(q='type:"Cases"', + cols='ixBug', + max=MAX_BUGS) + + tmpl = Template(open(TEMPLATE_FILE,'r').read()) + + for case in resp.cases.findAll('case'): + ixBug = int(case['ixBug']) + print(ixBug) + + respBug = fb.search(q='%s' % ixBug,cols ='sTitle,sPersonAssignedTo,sProject,sArea,sCategory,sPriority,events') + xmlBug = respBug.cases.findAll('case')[0] + + + + bug = {} + bug['ixBug'] = int(xmlBug['ixBug']) + bug['sTitle'] = xmlBug.sTitle.string if xmlBug.sTitle.string else '' + bug['sPersonAssignedTo'] = xmlBug.sPersonAssignedTo.string if xmlBug.sPersonAssignedTo.string else '' + bug['sProject'] = xmlBug.sProject.string if xmlBug.sProject.string else '' + bug['sArea'] = xmlBug.sArea.string if xmlBug.sArea.string else '' + bug['sCategory'] = xmlBug.sCategory.string if xmlBug.sCategory.string else '' + bug['sPriority'] = xmlBug.sPriority.string if xmlBug.sPriority.string else '' + bug['events'] = [] + + BACKUP_DIR = '/Users/fbenoist68/Code/python/fogbugz/fogbackup' + BACKUP_DIR += '/' + xmlBug.sProject.string if xmlBug.sProject.string else '' + + if not os.path.exists(BACKUP_DIR): + os.makedirs(BACKUP_DIR) + + BACKUP_DIR += '/' + str(xmlBug['ixBug']) + + if not os.path.exists(BACKUP_DIR): + os.makedirs(BACKUP_DIR) + + for event in xmlBug.events.findAll('event'): + bugEvent = {} + bugEvent['ixBugEvent'] = int(event['ixBugEvent']) + bugEvent['sVerb'] = event.sVerb.string if event.sVerb.string else '' + bugEvent['dt'] = event.dt.string if event.dt.string else '' + bugEvent['s'] = event.s.string if event.s.string else '' + bugEvent['sChanges'] = event.sChanges.string if event.sChanges.string else '' + bugEvent['evtDescription'] = event.evtDescription.string if event.evtDescription.string else '' + bugEvent['sPerson'] = event.sPerson.string if event.sPerson.string else '' + bugEvent['s'] = event.s.string.encode('ascii', 'ignore').decode('utf-8') if event.s.string else '' + theAttachments = '' + + for att in event.rgAttachments: + theAttachments += 'Attachment: ' +att.sFileName.string + '\n' + + print('Downloading attachment: ' + att.sFileName.string) + str1 = att.sURL.string + str2 = 'ixAttachment=' + loc1 = str1.find(str2) + len(str2) + loc2 = str1.find('&sFileName') + + str3 = ';sFileName=' + loc3 = str1.find(str3) + len(str3) + loc4 = str1.find('&sTicket') + + theURL = S_FOGBUGZ_URL #+ att.sURL.string + theURL += 'default.asp?' + theURL += 'ixAttachment=' + str1[loc1:loc2] + theURL += '&pg=pgDownload&pgType=pgFile&sFilename=' + str1[loc3:loc4] + theURL += '&token=rnl0t87rp34rfg6q0u0rgbhe85v5r8' + + #fix the replace + newFileName = att.sFileName.string.replace('/','') + newFileName = newFileName.replace(':','') + newFileName = BACKUP_DIR+'/'+newFileName + print(newFileName) + urllib.request.urlretrieve(theURL, newFileName) + bugEvent['attachment'] = theAttachments + bug['events'].append(bugEvent) + + + + + f = open('%s\\%s.html' % (BACKUP_DIR,bug['ixBug']),'w') + f.write(tmpl.render(bug=bug)) + f.close() + fb.view(ixBug=ixBug) + + +main() + + \ No newline at end of file diff --git a/backit.py b/backit.py new file mode 100644 index 0000000..cab2258 --- /dev/null +++ b/backit.py @@ -0,0 +1,232 @@ +import requests +from fogbugz import FogBugz +import os +import urllib +import mimetypes +import re + +GITEA_INSTANCE_URL = 'https://gitea.q2ii.fr' +GITEA_API_TOKEN = 'e5595a8807eb22fed9663c67553609832aaac909' +OWNER = 'fbenoist68' +REPO = 'mobileportal' +S_FOGBUGZ_URL = 'https://mobileretail.fogbugz.com/' +S_EMAIL = 'frederik.benoist@gfi.fr' +S_PASSWORD = '6brOc-gAr6' +MAX_BUGS = 999 + +def create_gitea_issue(title, body): + headers = { + 'Authorization': 'token ' + GITEA_API_TOKEN + } + + data = { + 'title': title, + 'body': body + } + + url = f'{GITEA_INSTANCE_URL}/api/v1/repos/{OWNER}/{REPO}/issues' + response = requests.post(url, json=data, headers=headers) + + if response.status_code == 201: + print('Issue created successfully.') + return response.json()['number'] + else: + print('Failed to create issue:', response.text) + return None + +def create_gitea_comment(issue_number, comment): + headers = { + 'Authorization': 'token ' + GITEA_API_TOKEN + } + + data = { + 'body': comment + } + + url = f'{GITEA_INSTANCE_URL}/api/v1/repos/{OWNER}/{REPO}/issues/{issue_number}/comments' + response = requests.post(url, json=data, headers=headers) + + if response.status_code == 201: + print('Comment created successfully.') + comment_id = response.json()['id'] + return comment_id + else: + print('Failed to create comment:', response.text) + return None + + +def upload_attachment_to_gitea_event(filename, attachment_data, comment_id): + headers = { + 'Authorization': 'token ' + GITEA_API_TOKEN + } + + # Determine the content type based on the file extension + content_type, _ = mimetypes.guess_type(filename) + if not content_type: + content_type = 'application/octet-stream' + + data = { + 'name': filename, + 'attachment': (filename, attachment_data, content_type), # Provide the content type here + } + + url = f'{GITEA_INSTANCE_URL}/api/v1/repos/{OWNER}/{REPO}/issues/comments/{comment_id}/assets' + response = requests.post(url, files=data, headers=headers) + + if response.status_code == 201: + print('Attachment linked successfully to the event.') + + # Get the browser_download_url from the response + download_url = response.json().get('browser_download_url') + print('Download URL:', download_url) + return download_url + else: + print('Failed to link attachment:', response.text) + return None + +def update_gitea_comment(comment_id, updated_sHtml): + headers = { + 'Authorization': 'token ' + GITEA_API_TOKEN + } + + GITEA_PATCH_URL = f'{GITEA_INSTANCE_URL}/api/v1/repos/{OWNER}/{REPO}/issues/comments/{comment_id}' + patch_data = { + 'body': updated_sHtml + } + response = requests.patch(GITEA_PATCH_URL, json=patch_data, headers=headers) + + if response.status_code == 200: + print('Comment updated successfully.') + else: + print('Failed to update comment:', response.text) + +def get_issue_id(issue): + return int(issue['ixBug']) + +def get_event_id(event): + return int(event['ixBugEvent']) + +def main(): + fb = FogBugz(S_FOGBUGZ_URL) + fb.logon(S_EMAIL, S_PASSWORD) + + resp = fb.search(q='type:"Cases"', + cols='ixBug', + max=MAX_BUGS) + + for case in sorted(resp.cases.findAll('case'), key=get_issue_id, reverse=False): + ixBug = int(case['ixBug']) + + if ixBug >= 242: # 93,242 + print(ixBug) + + respBug = fb.search(q='%s' % ixBug, cols='sTitle,sPersonAssignedTo,sProject,sArea,sCategory,sPriority,events') + xmlBug = respBug.cases.findAll('case')[0] + + BACKUP_DIR = '/Users/fbenoist68/Code/python/fogbugz/fogbackup' + BACKUP_DIR += '/' + xmlBug.sProject.string if xmlBug.sProject.string else '' + + if not os.path.exists(BACKUP_DIR): + os.makedirs(BACKUP_DIR) + + BACKUP_DIR += '/' + str(xmlBug['ixBug']) + + if not os.path.exists(BACKUP_DIR): + os.makedirs(BACKUP_DIR) + + # Create Gitea issue + issue_title = f"[FogBugz #{ixBug}] {xmlBug.sTitle.string if xmlBug.sTitle.string else ''}" + issue_body = f"Assigned To: {xmlBug.sPersonAssignedTo.string}\n" + issue_body += f"Project: {xmlBug.sProject.string}\n" + issue_body += f"Area: {xmlBug.sArea.string}\n" + issue_body += f"Category: {xmlBug.sCategory.string}\n" + issue_body += f"Priority: {xmlBug.sPriority.string}\n" + + issue_number = create_gitea_issue(issue_title, issue_body) + + if issue_number is not None: + # Create Gitea comment for each event in reverse !! + for event in sorted(xmlBug.events.findAll('event'), key=get_event_id, reverse=True): + bugEvent = {} + bugEvent['ixBugEvent'] = int(event['ixBugEvent']) + bugEvent['sVerb'] = event.sVerb.string if event.sVerb.string else '' + bugEvent['dt'] = event.dt.string if event.dt.string else '' + bugEvent['s'] = event.s.string if event.s.string else '' + bugEvent['sChanges'] = event.sChanges.string if event.sChanges.string else '' + bugEvent['evtDescription'] = event.evtDescription.string if event.evtDescription.string else '' + bugEvent['sPerson'] = event.sPerson.string if event.sPerson.string else '' + + if event.s and event.s.string: + bugEvent['s'] = event.s.string.encode('ascii', 'ignore').decode('utf-8') + else: + bugEvent['s'] = '' + + if event.sHtml and event.sHtml.string: + bugEvent['sHtml'] = event.sHtml.string.encode('ascii', 'ignore').decode('utf-8') + else: + bugEvent['sHtml'] = '' + + comment = f"Event ID: {bugEvent['ixBugEvent']}\n" + comment += f"Date: {bugEvent['dt']}\n" + comment += f"Person: {bugEvent['sPerson']}\n" + comment += f"Description: {bugEvent['evtDescription']}\n\n\n" + + # Afficher sHtml s'il n'est pas vide, sinon afficher s + content = bugEvent['sHtml'] if bugEvent['sHtml'] else bugEvent['s'] + comment += f"{content}" + + comment_id = create_gitea_comment(issue_number=issue_number, comment=comment) + print('comment id',comment_id); + + if comment_id is not None: + new_links = {} + + for att in event.rgAttachments: + print('Downloading attachment: ' + att.sFileName.string) + str1 = att.sURL.string + str2 = 'ixAttachment=' + loc1 = str1.find(str2) + len(str2) + loc2 = str1.find('&sFileName') + + str3 = ';sFileName=' + loc3 = str1.find(str3) + len(str3) + loc4 = str1.find('&sTicket') + + theURL = S_FOGBUGZ_URL # + att.sURL.string + theURL += 'default.asp?' + theURL += 'ixAttachment=' + str1[loc1:loc2] + theURL += '&pg=pgDownload&pgType=pgFile&sFilename=' + str1[loc3:loc4] + theURL += '&token=rnl0t87rp34rfg6q0u0rgbhe85v5r8' + + # fix the replace + newFileName = att.sFileName.string.replace('/', '') + newFileName = newFileName.replace(':', '') + newFileName = BACKUP_DIR + '/' + newFileName + print(newFileName) + urllib.request.urlretrieve(theURL, newFileName) + + with open(newFileName, 'rb') as attachment_file: + attachment_data = attachment_file.read() + + print('Uploading screenshot:', att.sFileName.string) + download_url = upload_attachment_to_gitea_event(att.sFileName.string, attachment_data, comment_id) + + if download_url: + # Stocker le nouveau lien avec l'ID de l'attachement comme clé + new_links[str1[loc1:loc2]] = download_url + + if new_links: + # Remplacer les liens d'attachement dans sHtml avec les nouvelles URLs + updated_sHtml = comment + + for att_id, download_url in new_links.items(): + # Utilisation d'une expression régulière pour trouver les liens img avec ixAttachment=574 + pattern = fr']*?ixAttachment={att_id}[^>]*>' + + # Remplacement de tous les liens correspondant au modèle par le nouveau download_url + updated_sHtml = re.sub(pattern, f'', updated_sHtml) + + update_gitea_comment(comment_id, updated_sHtml) + + fb.view(ixBug=ixBug) +main() diff --git a/fbBackupTemplate.html b/fbBackupTemplate.html new file mode 100644 index 0000000..a3264ca --- /dev/null +++ b/fbBackupTemplate.html @@ -0,0 +1,55 @@ + + + + {{bug.ixBug|e}} | {{bug.sTitle|e}} + + + +
+ Bug ID: {{bug.ixBug|e}}
+ Title: {{bug.sTitle|e}}
+ Assigned To: {{bug.sPersonAssignedTo|e}}
+ Project: {{bug.sProject|e}}
+ Area: {{bug.sArea|e}}
+ Category: {{bug.sCategory|e}}
+ Title: {{bug.sPriority|e}}
+
+
+ {% for event in bug.events %} +
+ BugEvent ID: {{event.ixBugEvent|e}}
+ Date/Time: {{event.dt|e}}
+ Verb: {{event.sVerb|e}}
+ Event Description: {{event.evtDescription|e}}
+ Changes: {{event.sChanges|e}}
+ Person: {{event.sPerson|e}}
+ Text:
+
{{event.s|e}}

+
{{event.attachment|e}}

+
+ {% endfor %} +
+ + diff --git a/fogbackup/BACK OFFICE/658/Fiche CLIENT_ModificationRedirectionNouvelleFiche_V0.1.docx b/fogbackup/BACK OFFICE/658/Fiche CLIENT_ModificationRedirectionNouvelleFiche_V0.1.docx new file mode 100644 index 0000000..5f5974a Binary files /dev/null and b/fogbackup/BACK OFFICE/658/Fiche CLIENT_ModificationRedirectionNouvelleFiche_V0.1.docx differ diff --git a/fogbackup/BACK OFFICE/659/image.png b/fogbackup/BACK OFFICE/659/image.png new file mode 100644 index 0000000..319c9db Binary files /dev/null and b/fogbackup/BACK OFFICE/659/image.png differ diff --git a/fogbackup/CAISSE/101/recherche_produit_web_ds.sql b/fogbackup/CAISSE/101/recherche_produit_web_ds.sql new file mode 100644 index 0000000..d0bda77 --- /dev/null +++ b/fogbackup/CAISSE/101/recherche_produit_web_ds.sql @@ -0,0 +1,415 @@ +/* Formatted on 19/02/2013 16:27:45 (QP5 v5.206) */ +SELECT a0a1a0a0.id_produit AS a0a1a0a0a1, + a0a1a0a0.id_famille AS a0a1a0a0a4, + a0a1a0a0.code_modele AS a0a1a0a0a3, + a0a1a0a0.id_type_produit AS a0a1a0a0a2, + a0a1a0a0.id_type_axe_valeur1 AS a0a1a0a0a6, + a0a1a0a0.id_type_axe_valeur2 AS a0a1a0a0a7, + a0a1a0a0.id_type_axe_valeur3 AS a0a1a0a0a8, + a0a1a0a0.id_type_axe_valeur4 AS a0a1a0a0a9, + a0a1a0a0.id_taxe AS a0a1a0a0a10, + a0a1a0a0.id_marque AS a0a1a0a0a21, + a0a1a0a0.id_structure AS a0a1a0a0a28, + a0a1a0a0.code_reference AS a0a1a0a0a11, + a0a1a0a0.nom AS a0a1a0a0a5, + a0a1a0a0.garantie_plantation AS a0a1a0a0a12, + a0a1a0a0.troc_axe1 AS a0a1a0a0a13, + a0a1a0a0.troc_axe2 AS a0a1a0a0a14, + a0a1a0a0.troc_axe3 AS a0a1a0a0a15, + a0a1a0a0.troc_axe4 AS a0a1a0a0a16, + a0a1a0a0.messagecentrale AS a0a1a0a0a17, + a0a1a0a0.ecotaxe AS a0a1a0a0a18, + a0a1a0a0.ecotaxe_tva AS a0a1a0a0a19, + a0a1a0a0.prix_vente AS a0a1a0a0a20, + a0a1a0a0.reference_constructeur AS a0a1a0a0a22, + a0a1a0a0.garantie_5_ans AS a0a1a0a0a26, + a0a1a0a0.garantieenpourcent AS a0a1a0a0a27, + a0a1a0a0.gestion_valeur AS a0a1a0a0a29, + a0a1a0a0.prochaine_reference AS a0a1a0a0a30, + a0a1a0a0.id_etat AS a0a1a0a0a31, + a0a1a0a0.annules AS a0a1a0a0a32, + a0a1a0a0.abandonnes AS a0a1a0a0a33, + a1a154a1a0.id_type_carte AS a1a154a1a0a6941, + a1a154a1a0.id_produit AS a1a154a1a0a6942, + a1a154a1a0.capoint AS a1a154a1a0a6943, + a1a154a1a0.capointremise AS a1a154a1a0a6944, + a1a134a1a0.id_marque AS a1a134a1a0a6141, + a1a134a1a0.nom AS a1a134a1a0a6142, + a1a20a1a0.produit_bipable AS a1a20a1a0a722, + a1a20a1a0.id_type_produit AS a1a20a1a0a721, + a20a21a2a0.id_type_produit AS a20a21a2a0a761, + a20a21a2a0.id_distrib AS a20a21a2a0a762, + a20a21a2a0.accept_repart_remis_pd_tick AS a20a21a2a0a782, + a20a21a2a0.afficher_dans_panneau_bouton AS a20a21a2a0a777, + a20a21a2a0.autoriser_retour AS a20a21a2a0a775, + a20a21a2a0.couleur AS a20a21a2a0a776, + a20a21a2a0.dispo_mode_deconnecte AS a20a21a2a0a781, + a20a21a2a0.exclure_calcul_fidelisation AS a20a21a2a0a784, + a20a21a2a0.exclure_calcul_op_commercial AS a20a21a2a0a785, + a20a21a2a0.forcer_selection_consommateur AS a20a21a2a0a763, + a20a21a2a0.forcer_selection_motif AS a20a21a2a0a765, + a20a21a2a0.print_comme_ligne_sur_ticket AS a20a21a2a0a766, + a20a21a2a0.imprimer_en_pied_ticket AS a20a21a2a0a768, + a20a21a2a0.montant_mini AS a20a21a2a0a770, + a20a21a2a0.montant_modifiable AS a20a21a2a0a773, + a20a21a2a0.pourcentage_mini_total_ticket AS a20a21a2a0a771, + a20a21a2a0.quantite_modifiable AS a20a21a2a0a774, + a20a21a2a0.remise_interdite AS a20a21a2a0a783, + a20a21a2a0.saisie_montant AS a20a21a2a0a764, + a20a21a2a0.sens_accepte AS a20a21a2a0a769, + a20a21a2a0.texte_remplacement_mt_null AS a20a21a2a0a772, + a20a21a2a0.total_en_pied_ticket AS a20a21a2a0a767, + a20a21a2a0.type_remise_maxi AS a20a21a2a0a778, + a20a21a2a0.un_seul_par_ticket AS a20a21a2a0a780, + a20a21a2a0.valeur_remise_maxi AS a20a21a2a0a779, + a20a21a2a0.prefix_code_barre AS a20a21a2a0a786, + a20a21a2a0.longueur_code_barre AS a20a21a2a0a787, + a20a21a2a0.type_code_barre AS a20a21a2a0a788, + a20a21a2a0.id_type_bon_achat AS a20a21a2a0a789, + a20a21a2a0.gestion_stock AS a20a21a2a0a792, + a20a21a2a0.impressionba AS a20a21a2a0a791, + a21a26a3a0.id_type_produit AS a21a26a3a0a1001, + a21a26a3a0.id_distrib AS a21a26a3a0a1002, + a21a26a3a0.code_motif AS a21a26a3a0a1003, + a21a26a3a0.date_deb AS a21a26a3a0a1004, + a21a26a3a0.date_fin AS a21a26a3a0a1005, + a21a26a3a0.id_pays AS a21a26a3a0a1006, + a26a27a4a0.code_motif AS a26a27a4a0a1041, + a26a27a4a0.forcer_selection_vendeur AS a26a27a4a0a1044, + a26a27a4a0.autoris_saisie_nouveau_prix AS a26a27a4a0a1050, + a26a27a4a0.deductible_du_total_ticket AS a26a27a4a0a1049, + a26a27a4a0.deduire_remise_pour_retour AS a26a27a4a0a1048, + a26a27a4a0.detail_par_ligne_article AS a26a27a4a0a1046, + a26a27a4a0.libelle AS a26a27a4a0a1042, + a26a27a4a0.libellecourt AS a26a27a4a0a1043, + a26a27a4a0.message_sur_ticket AS a26a27a4a0a1051, + a26a27a4a0.possible_pour_pied_ticket AS a26a27a4a0a1056, + a26a27a4a0.possible_pour_sous_total AS a26a27a4a0a1055, + a26a27a4a0.saisie_commentaire AS a26a27a4a0a1045, + a26a27a4a0.sens_valeur_accepte AS a26a27a4a0a1052, + a26a27a4a0.total_en_pied_de_ticket AS a26a27a4a0a1047, + a26a27a4a0.type_valeur AS a26a27a4a0a1053, + a26a27a4a0.valeur_defaut AS a26a27a4a0a1054, + a26a27a4a0.restockage_produit_retour AS a26a27a4a0a1057, + a26a27a4a0.alimenter_panier_litige AS a26a27a4a0a1058, + a26a27a4a0.valeur_maxi AS a26a27a4a0a1059, + a27a103a5a0.code_motif AS a27a103a5a0a4901, + a27a103a5a0.code AS a27a103a5a0a4902, + a27a103a5a0.libelle AS a27a103a5a0a4903, + a27a103a5a0.libellecourt AS a27a103a5a0a4904, + a21a57a3a0.id_type_bon_achat AS a21a57a3a0a2241, + a21a57a3a0.prefix_code_barre AS a21a57a3a0a2242, + a21a57a3a0.libelle AS a21a57a3a0a2243, + a21a57a3a0.longueur AS a21a57a3a0a2244, + a21a57a3a0.TYPE AS a21a57a3a0a2245, + a21a57a3a0.duree_validite_en_jours AS a21a57a3a0a2246, + a21a57a3a0.remonter_client AS a21a57a3a0a2247, + a57a120a4a0.id_type_bon_achat AS a57a120a4a0a5581, + a57a120a4a0.id_distrib AS a57a120a4a0a5582, + a57a120a4a0.duree_validite_en_jours AS a57a120a4a0a5583, + a57a120a4a0.secable AS a57a120a4a0a5584, + a1a99a1a0.id_produit AS a1a99a1a0a4741, + a1a99a1a0.code AS a1a99a1a0a4742, + a1a99a1a0.nom AS a1a99a1a0a4743, + a1a99a1a0.troc_axe1 AS a1a99a1a0a4744, + a1a99a1a0.troc_axe2 AS a1a99a1a0a4745, + a1a99a1a0.troc_axe3 AS a1a99a1a0a4746, + a1a99a1a0.troc_axe4 AS a1a99a1a0a4747, + a1a99a1a0.messagecentrale AS a1a99a1a0a4748, + a1a15a1a0.id_produit AS a1a15a1a0a562, + a1a15a1a0.code_barre AS a1a15a1a0a561, + a1a24a1a0.id_taxe AS a1a24a1a0a921, + a1a24a1a0.nom AS a1a24a1a0a922, + a24a25a2a0.id_pays AS a24a25a2a0a961, + a24a25a2a0.id_taxe AS a24a25a2a0a962, + a24a25a2a0.pourcentage AS a24a25a2a0a963, + a24a25a2a0.nom AS a24a25a2a0a964, + a25a161a3a0.id_pays AS a25a161a3a0a7122, + a25a161a3a0.id_taxe AS a25a161a3a0a7121, + a25a161a3a0.date_deb AS a25a161a3a0a7123, + a25a161a3a0.pourcentage AS a25a161a3a0a7125, + a25a161a3a0.date_fin AS a25a161a3a0a7124, + a1a119a1a0.id_pays AS a1a119a1a0a5541, + a1a119a1a0.id_produit AS a1a119a1a0a5542, + a1a119a1a0.id_taxe AS a1a119a1a0a5543, + a119a24a2a1.id_taxe AS a119a24a2a1a921, + a119a24a2a1.nom AS a119a24a2a1a922, + a24a25a3a1.id_pays AS a24a25a3a1a961, + a24a25a3a1.id_taxe AS a24a25a3a1a962, + a24a25a3a1.pourcentage AS a24a25a3a1a963, + a24a25a3a1.nom AS a24a25a3a1a964, + a25a161a4a1.id_pays AS a25a161a4a1a7122, + a25a161a4a1.id_taxe AS a25a161a4a1a7121, + a25a161a4a1.date_deb AS a25a161a4a1a7123, + a25a161a4a1.pourcentage AS a25a161a4a1a7125, + a25a161a4a1.date_fin AS a25a161a4a1a7124, + a1a126a1a0.id_distrib AS a1a126a1a0a5821, + a1a126a1a0.id_structure AS a1a126a1a0a5822, + a1a126a1a0.id_produit AS a1a126a1a0a5823, + a1a126a1a0.id_carte_fidelite_type AS a1a126a1a0a5825, + a1a126a1a0.garantie AS a1a126a1a0a5824, + a1a4a1a0.id_famille AS a1a4a1a0a81, + a1a4a1a0.id_famille_parent AS a1a4a1a0a82, + a1a4a1a0.id_type_axe1 AS a1a4a1a0a83, + a1a4a1a0.id_type_axe2 AS a1a4a1a0a84, + a1a4a1a0.id_type_axe3 AS a1a4a1a0a85, + a1a4a1a0.id_type_axe4 AS a1a4a1a0a86, + a1a4a1a0.niveau AS a1a4a1a0a87, + a1a4a1a0.id_couleur AS a1a4a1a0a89, + a1a4a1a0.nom AS a1a4a1a0a88, + a1a4a1a0.ecotaxe AS a1a4a1a0a90, + a1a4a1a0.garantie_par_defaut AS a1a4a1a0a91, + a1a4a1a0.saisie_serie AS a1a4a1a0a92, + a1a4a1a0.extension_garantie AS a1a4a1a0a93, + a1a4a1a0.code_externe AS a1a4a1a0a94, + a4a137a2a0.id_type_carte AS a4a137a2a0a6261, + a4a137a2a0.id_famille AS a4a137a2a0a6262, + a4a137a2a0.capoint AS a4a137a2a0a6263, + a4a137a2a0.capointremise AS a4a137a2a0a6264, + a1a4a1a1.id_famille AS a1a4a1a1a81, + a1a4a1a1.id_famille_parent AS a1a4a1a1a82, + a1a4a1a1.id_type_axe1 AS a1a4a1a1a83, + a1a4a1a1.id_type_axe2 AS a1a4a1a1a84, + a1a4a1a1.id_type_axe3 AS a1a4a1a1a85, + a1a4a1a1.id_type_axe4 AS a1a4a1a1a86, + a1a4a1a1.niveau AS a1a4a1a1a87, + a1a4a1a1.id_couleur AS a1a4a1a1a89, + a1a4a1a1.nom AS a1a4a1a1a88, + a1a4a1a1.ecotaxe AS a1a4a1a1a90, + a1a4a1a1.garantie_par_defaut AS a1a4a1a1a91, + a1a4a1a1.saisie_serie AS a1a4a1a1a92, + a1a4a1a1.extension_garantie AS a1a4a1a1a93, + a1a4a1a1.code_externe AS a1a4a1a1a94, + a1a4a1a2.id_famille AS a1a4a1a2a81, + a1a4a1a2.id_famille_parent AS a1a4a1a2a82, + a1a4a1a2.id_type_axe1 AS a1a4a1a2a83, + a1a4a1a2.id_type_axe2 AS a1a4a1a2a84, + a1a4a1a2.id_type_axe3 AS a1a4a1a2a85, + a1a4a1a2.id_type_axe4 AS a1a4a1a2a86, + a1a4a1a2.niveau AS a1a4a1a2a87, + a1a4a1a2.id_couleur AS a1a4a1a2a89, + a1a4a1a2.nom AS a1a4a1a2a88, + a1a4a1a2.ecotaxe AS a1a4a1a2a90, + a1a4a1a2.garantie_par_defaut AS a1a4a1a2a91, + a1a4a1a2.saisie_serie AS a1a4a1a2a92, + a1a4a1a2.extension_garantie AS a1a4a1a2a93, + a1a4a1a2.code_externe AS a1a4a1a2a94, + a1a4a1a3.id_famille AS a1a4a1a3a81, + a1a4a1a3.id_famille_parent AS a1a4a1a3a82, + a1a4a1a3.id_type_axe1 AS a1a4a1a3a83, + a1a4a1a3.id_type_axe2 AS a1a4a1a3a84, + a1a4a1a3.id_type_axe3 AS a1a4a1a3a85, + a1a4a1a3.id_type_axe4 AS a1a4a1a3a86, + a1a4a1a3.niveau AS a1a4a1a3a87, + a1a4a1a3.id_couleur AS a1a4a1a3a89, + a1a4a1a3.nom AS a1a4a1a3a88, + a1a4a1a3.ecotaxe AS a1a4a1a3a90, + a1a4a1a3.garantie_par_defaut AS a1a4a1a3a91, + a1a4a1a3.saisie_serie AS a1a4a1a3a92, + a1a4a1a3.extension_garantie AS a1a4a1a3a93, + a1a4a1a3.code_externe AS a1a4a1a3a94, + a1a17a1a0.id AS a1a17a1a0a641, + a1a17a1a0.id_type_axe AS a1a17a1a0a642, + a1a17a1a0.id_principal AS a1a17a1a0a643, + a1a17a1a0.valeur AS a1a17a1a0a644, + a1a17a1a0.code_externe AS a1a17a1a0a645, + a17a18a2a0.id AS a17a18a2a0a681, + a17a18a2a0.code AS a17a18a2a0a682, + a17a18a2a0.libelle AS a17a18a2a0a683, + a17a18a2a0.valeur AS a17a18a2a0a684, + a17a18a2a0.code_externe AS a17a18a2a0a685, + a1a17a1a1.id AS a1a17a1a1a641, + a1a17a1a1.id_type_axe AS a1a17a1a1a642, + a1a17a1a1.id_principal AS a1a17a1a1a643, + a1a17a1a1.valeur AS a1a17a1a1a644, + a1a17a1a1.code_externe AS a1a17a1a1a645, + a1a91a1a0.id_ligne AS a1a91a1a0a4381, + a1a91a1a0.id_catalogue AS a1a91a1a0a4382, + a1a91a1a0.id_produit AS a1a91a1a0a4383, + a1a95a1a0.id_produit AS a1a95a1a0a4581, + a1a95a1a0.id_pays AS a1a95a1a0a4582, + a1a95a1a0.ecotaxe AS a1a95a1a0a4583, + a1a11a1a0.id_tarif AS a1a11a1a0a401, + a1a11a1a0.id_produit AS a1a11a1a0a402, + a1a11a1a0.prix_vente AS a1a11a1a0a403, + a1a11a1a0.prix_vente_points AS a1a11a1a0a404, + a1a11a1a0.points_prix_vente AS a1a11a1a0a405, + a1a11a1a0.points AS a1a11a1a0a406, + a1a11a1a0.prix_minimal AS a1a11a1a0a407, + a11a14a2a0.id_tarif AS a11a14a2a0a521, + a11a14a2a0.id_structure AS a11a14a2a0a522, + a11a14a2a0.datedeb AS a11a14a2a0a523, + a11a14a2a0.datefin AS a11a14a2a0a524, + a11a14a2a0.datecreation AS a11a14a2a0a525, + a11a36a2a0.id_tarif AS a11a36a2a0a1441, + a11a36a2a0.code_motif AS a11a36a2a0a1444, + a11a36a2a0.code_saison AS a11a36a2a0a1443, + a11a36a2a0.id_devise AS a11a36a2a0a1445, + a11a36a2a0.solde AS a11a36a2a0a1442, + a11a36a2a0.type_tarif AS a11a36a2a0a1446, + a11a36a2a0.ht AS a11a36a2a0a1447, + a36a27a3a1.code_motif AS a36a27a3a1a1041, + a36a27a3a1.forcer_selection_vendeur AS a36a27a3a1a1044, + a36a27a3a1.autoris_saisie_nouveau_prix AS a36a27a3a1a1050, + a36a27a3a1.deductible_du_total_ticket AS a36a27a3a1a1049, + a36a27a3a1.deduire_remise_pour_retour AS a36a27a3a1a1048, + a36a27a3a1.detail_par_ligne_article AS a36a27a3a1a1046, + a36a27a3a1.libelle AS a36a27a3a1a1042, + a36a27a3a1.libellecourt AS a36a27a3a1a1043, + a36a27a3a1.message_sur_ticket AS a36a27a3a1a1051, + a36a27a3a1.possible_pour_pied_ticket AS a36a27a3a1a1056, + a36a27a3a1.possible_pour_sous_total AS a36a27a3a1a1055, + a36a27a3a1.saisie_commentaire AS a36a27a3a1a1045, + a36a27a3a1.sens_valeur_accepte AS a36a27a3a1a1052, + a36a27a3a1.total_en_pied_de_ticket AS a36a27a3a1a1047, + a36a27a3a1.type_valeur AS a36a27a3a1a1053, + a36a27a3a1.valeur_defaut AS a36a27a3a1a1054, + a36a27a3a1.restockage_produit_retour AS a36a27a3a1a1057, + a36a27a3a1.alimenter_panier_litige AS a36a27a3a1a1058, + a36a27a3a1.valeur_maxi AS a36a27a3a1a1059, + a27a103a4a1.code_motif AS a27a103a4a1a4901, + a27a103a4a1.code AS a27a103a4a1a4902, + a27a103a4a1.libelle AS a27a103a4a1a4903, + a27a103a4a1.libellecourt AS a27a103a4a1a4904, + a1a127a1a0.id_structure AS a1a127a1a0a5861, + a1a127a1a0.id_produit AS a1a127a1a0a5862, + a1a127a1a0.pvttc AS a1a127a1a0a5863, + a127a33a2a0.id_structure AS a127a33a2a0a1321, + a127a33a2a0.id_devise AS a127a33a2a0a1324, + a127a33a2a0.id_pays3 AS a127a33a2a0a1325, + a127a33a2a0.id_distrib AS a127a33a2a0a1326, + a127a33a2a0.id_cp3 AS a127a33a2a0a1330, + a127a33a2a0.id_taxe AS a127a33a2a0a1334, + a127a33a2a0.num_interne AS a127a33a2a0a1336, + a127a33a2a0.nom AS a127a33a2a0a1322, + a127a33a2a0.enseigne AS a127a33a2a0a1323, + a127a33a2a0.adresse1 AS a127a33a2a0a1327, + a127a33a2a0.adresse2 AS a127a33a2a0a1328, + a127a33a2a0.adresse3 AS a127a33a2a0a1329, + a127a33a2a0.tel3 AS a127a33a2a0a1331, + a127a33a2a0.fax3 AS a127a33a2a0a1332, + a127a33a2a0.mail AS a127a33a2a0a1333, + a127a33a2a0.droits_speciaux AS a127a33a2a0a1335, + a127a33a2a0.cp_sur_ticket AS a127a33a2a0a1337, + a127a33a2a0.campagne_chalandise_debut AS a127a33a2a0a1338, + a127a33a2a0.campagne_chalandise_fin AS a127a33a2a0a1339, + a127a33a2a0.decalage_horaire_ete AS a127a33a2a0a1340, + a127a33a2a0.decalage_horaire_hiver AS a127a33a2a0a1341, + a127a33a2a0.langue AS a127a33a2a0a1342, + a127a33a2a0.tel_sav AS a127a33a2a0a1343, + a127a33a2a0.capital_social AS a127a33a2a0a1344, + a127a33a2a0.type_societe AS a127a33a2a0a1345, + a127a33a2a0.num_siret AS a127a33a2a0a1346, + a127a33a2a0.numero_rc AS a127a33a2a0a1347, + a127a33a2a0.num_tva AS a127a33a2a0a1348, + a127a33a2a0.numero_id_fiscale AS a127a33a2a0a1349, + a127a33a2a0.id_niveau AS a127a33a2a0a1350, + a127a33a2a0.id_structure_parent AS a127a33a2a0a1351, + a127a33a2a0.structures_parents AS a127a33a2a0a1352, + a127a33a2a0.prefix_ip AS a127a33a2a0a1353, + a127a33a2a0.nb_factures AS a127a33a2a0a1354, + a127a33a2a0.nbre_jour_validite_pwd AS a127a33a2a0a1355, + a127a33a2a0.denominationsociale AS a127a33a2a0a1356, + a127a33a2a0.mentionlegale AS a127a33a2a0a1357, + a127a33a2a0.gpslatitude AS a127a33a2a0a1358, + a127a33a2a0.gpslongitude AS a127a33a2a0a1359, + a127a33a2a0.horaires_jours_ouverture AS a127a33a2a0a1360, + a127a33a2a0.ecommerce AS a127a33a2a0a1361 + FROM produit a0a1a0a0 + LEFT OUTER JOIN carte_fidelite_type_produit a1a154a1a0 + ON (a0a1a0a0.id_produit = a1a154a1a0.id_produit) + LEFT OUTER JOIN marque a1a134a1a0 + ON (a0a1a0a0.id_marque = a1a134a1a0.id_marque) + INNER JOIN produit_type a1a20a1a0 + ON (a0a1a0a0.id_type_produit = a1a20a1a0.id_type_produit) + LEFT OUTER JOIN produit_type_distrib a20a21a2a0 + ON (a1a20a1a0.id_type_produit = a20a21a2a0.id_type_produit) + AND ( (a20a21a2a0.id_distrib = '3')) + LEFT OUTER JOIN produit_type_distrib_motif a21a26a3a0 + ON ( a20a21a2a0.id_type_produit = + a21a26a3a0.id_type_produit + AND a20a21a2a0.id_distrib = a21a26a3a0.id_distrib) + AND ( (a21a26a3a0.id_distrib = '3')) + LEFT OUTER JOIN motif a26a27a4a0 + ON (a21a26a3a0.code_motif = a26a27a4a0.code_motif) + LEFT OUTER JOIN language_motif a27a103a5a0 + ON (a26a27a4a0.code_motif = a27a103a5a0.code_motif) + AND ( (a27a103a5a0.code = '3')) + LEFT OUTER JOIN param_type_bon_achat a21a57a3a0 + ON (a20a21a2a0.id_type_bon_achat = a21a57a3a0.id_type_bon_achat) + LEFT OUTER JOIN param_type_bon_achat_distrib a57a120a4a0 + ON (a21a57a3a0.id_type_bon_achat = + a57a120a4a0.id_type_bon_achat) + AND ( (a57a120a4a0.id_distrib = '3')) + LEFT OUTER JOIN language_produit a1a99a1a0 + ON (a0a1a0a0.id_produit = a1a99a1a0.id_produit) + AND ( (a1a99a1a0.id_produit = '1019629') + AND (a1a99a1a0.code = '3')) + LEFT OUTER JOIN produit_code_barre a1a15a1a0 + ON (a0a1a0a0.id_produit = a1a15a1a0.id_produit) + LEFT OUTER JOIN param_taxes a1a24a1a0 + ON (a0a1a0a0.id_taxe = a1a24a1a0.id_taxe) + LEFT OUTER JOIN param_taxes_valeur a24a25a2a0 + ON (a1a24a1a0.id_taxe = a24a25a2a0.id_taxe) + AND ( (a24a25a2a0.id_pays = '59')) + LEFT OUTER JOIN param_taxes_valeur_histo a25a161a3a0 + ON ( a24a25a2a0.id_pays = a25a161a3a0.id_pays + AND a24a25a2a0.id_taxe = a25a161a3a0.id_taxe) + LEFT OUTER JOIN param_taxes_produit_pays a1a119a1a0 + ON (a0a1a0a0.id_produit = a1a119a1a0.id_produit) + AND ( (a1a119a1a0.id_pays = '59')) + LEFT OUTER JOIN param_taxes a119a24a2a1 + ON (a1a119a1a0.id_taxe = a119a24a2a1.id_taxe) + LEFT OUTER JOIN param_taxes_valeur a24a25a3a1 + ON (a119a24a2a1.id_taxe = a24a25a3a1.id_taxe) + AND ( (a24a25a3a1.id_pays = '59')) + LEFT OUTER JOIN param_taxes_valeur_histo a25a161a4a1 + ON ( a24a25a3a1.id_pays = a25a161a4a1.id_pays + AND a24a25a3a1.id_taxe = a25a161a4a1.id_taxe) + LEFT OUTER JOIN produit_structure_garantie a1a126a1a0 + ON (a0a1a0a0.id_produit = a1a126a1a0.id_produit) + AND ( (a1a126a1a0.id_distrib = '3')) + LEFT OUTER JOIN produit_famille a1a4a1a0 + ON (a0a1a0a0.id_famille = a1a4a1a0.id_famille) + LEFT OUTER JOIN carte_fidelite_type_famille a4a137a2a0 + ON (a1a4a1a0.id_famille = a4a137a2a0.id_famille) + LEFT OUTER JOIN produit_famille a1a4a1a1 + ON (a0a1a0a0.id_famille = a1a4a1a1.id_famille) + LEFT OUTER JOIN produit_famille a1a4a1a2 + ON (a0a1a0a0.id_famille = a1a4a1a2.id_famille) + LEFT OUTER JOIN produit_famille a1a4a1a3 + ON (a0a1a0a0.id_famille = a1a4a1a3.id_famille) + LEFT OUTER JOIN param_axe_valeur a1a17a1a0 + ON (a0a1a0a0.id_type_axe_valeur1 = a1a17a1a0.id) + LEFT OUTER JOIN language_param_axe_valeur a17a18a2a0 + ON (a1a17a1a0.id = a17a18a2a0.id) + LEFT OUTER JOIN param_axe_valeur a1a17a1a1 + ON (a0a1a0a0.id_type_axe_valeur2 = a1a17a1a1.id) + LEFT OUTER JOIN catalogue_ligne a1a91a1a0 + ON (a0a1a0a0.id_produit = a1a91a1a0.id_produit) + LEFT OUTER JOIN produit_ecopart_pays a1a95a1a0 + ON (a0a1a0a0.id_produit = a1a95a1a0.id_produit) + AND ( (a1a95a1a0.id_produit = '1019629') + AND (a1a95a1a0.id_pays = '59')) + INNER JOIN tarif_ligne a1a11a1a0 + ON (a0a1a0a0.id_produit = a1a11a1a0.id_produit) + INNER JOIN tarif_structure a11a14a2a0 + ON (a1a11a1a0.id_tarif = a11a14a2a0.id_tarif) + AND ( (a11a14a2a0.id_structure = '760')) + INNER JOIN tarif a11a36a2a0 + ON (a1a11a1a0.id_tarif = a11a36a2a0.id_tarif) + LEFT OUTER JOIN motif a36a27a3a1 + ON (a11a36a2a0.code_motif = a36a27a3a1.code_motif) + LEFT OUTER JOIN language_motif a27a103a4a1 + ON (a36a27a3a1.code_motif = a27a103a4a1.code_motif) + AND ( (a27a103a4a1.code = '3')) + LEFT OUTER JOIN produit_structure_visu a1a127a1a0 + ON (a0a1a0a0.id_produit = a1a127a1a0.id_produit) + AND ( ( a1a127a1a0.id_structure = '760' + OR a1a127a1a0.id_structure = '243' + OR a1a127a1a0.id_structure = '2' + OR a1a127a1a0.id_structure = '1')) + LEFT OUTER JOIN structure a127a33a2a0 + ON (a1a127a1a0.id_structure = a127a33a2a0.id_structure) + WHERE a0a1a0a0.id_produit = 1019629 + diff --git a/fogbackup/CAISSE/103/screenshot.png b/fogbackup/CAISSE/103/screenshot.png new file mode 100644 index 0000000..cbc8c36 Binary files /dev/null and b/fogbackup/CAISSE/103/screenshot.png differ diff --git a/fogbackup/CAISSE/116/screenshot.png b/fogbackup/CAISSE/116/screenshot.png new file mode 100644 index 0000000..9e4a993 Binary files /dev/null and b/fogbackup/CAISSE/116/screenshot.png differ diff --git a/fogbackup/CAISSE/121/joli.jpg b/fogbackup/CAISSE/121/joli.jpg new file mode 100644 index 0000000..792d910 Binary files /dev/null and b/fogbackup/CAISSE/121/joli.jpg differ diff --git a/fogbackup/CAISSE/125/toto.jpg b/fogbackup/CAISSE/125/toto.jpg new file mode 100644 index 0000000..d04a64e Binary files /dev/null and b/fogbackup/CAISSE/125/toto.jpg differ diff --git a/fogbackup/CAISSE/131/screenshot.png b/fogbackup/CAISSE/131/screenshot.png new file mode 100644 index 0000000..0fb1a78 Binary files /dev/null and b/fogbackup/CAISSE/131/screenshot.png differ diff --git a/fogbackup/CAISSE/132/screenshot.png b/fogbackup/CAISSE/132/screenshot.png new file mode 100644 index 0000000..3274ecb Binary files /dev/null and b/fogbackup/CAISSE/132/screenshot.png differ diff --git a/fogbackup/CAISSE/133/2013-07-31_072110.jpg b/fogbackup/CAISSE/133/2013-07-31_072110.jpg new file mode 100644 index 0000000..f64e3e0 Binary files /dev/null and b/fogbackup/CAISSE/133/2013-07-31_072110.jpg differ diff --git a/fogbackup/CAISSE/134/screenshot.png b/fogbackup/CAISSE/134/screenshot.png new file mode 100644 index 0000000..cf489f3 Binary files /dev/null and b/fogbackup/CAISSE/134/screenshot.png differ diff --git a/fogbackup/CAISSE/212/screenshot.png b/fogbackup/CAISSE/212/screenshot.png new file mode 100644 index 0000000..37cd93a Binary files /dev/null and b/fogbackup/CAISSE/212/screenshot.png differ diff --git a/fogbackup/CAISSE/226/screenshot.png b/fogbackup/CAISSE/226/screenshot.png new file mode 100644 index 0000000..b586ea4 Binary files /dev/null and b/fogbackup/CAISSE/226/screenshot.png differ diff --git a/fogbackup/CAISSE/240/screenshot.png b/fogbackup/CAISSE/240/screenshot.png new file mode 100644 index 0000000..db4aa22 Binary files /dev/null and b/fogbackup/CAISSE/240/screenshot.png differ diff --git a/fogbackup/CAISSE/243/screenshot.png b/fogbackup/CAISSE/243/screenshot.png new file mode 100644 index 0000000..c18b59e Binary files /dev/null and b/fogbackup/CAISSE/243/screenshot.png differ diff --git a/fogbackup/CAISSE/244/screenshot.png b/fogbackup/CAISSE/244/screenshot.png new file mode 100644 index 0000000..d619649 Binary files /dev/null and b/fogbackup/CAISSE/244/screenshot.png differ diff --git a/fogbackup/CAISSE/48/screenshot.png b/fogbackup/CAISSE/48/screenshot.png new file mode 100644 index 0000000..876ff27 Binary files /dev/null and b/fogbackup/CAISSE/48/screenshot.png differ diff --git a/fogbackup/CAISSE/50/toto.jpg b/fogbackup/CAISSE/50/toto.jpg new file mode 100644 index 0000000..11ac577 Binary files /dev/null and b/fogbackup/CAISSE/50/toto.jpg differ diff --git a/fogbackup/CAISSE/78/screenshot.png b/fogbackup/CAISSE/78/screenshot.png new file mode 100644 index 0000000..d55ad20 Binary files /dev/null and b/fogbackup/CAISSE/78/screenshot.png differ diff --git a/fogbackup/CAISSE/78/toto.jpg b/fogbackup/CAISSE/78/toto.jpg new file mode 100644 index 0000000..7c13eb4 Binary files /dev/null and b/fogbackup/CAISSE/78/toto.jpg differ diff --git a/fogbackup/CAISSE/81/screenshot.png b/fogbackup/CAISSE/81/screenshot.png new file mode 100644 index 0000000..d30bb1e Binary files /dev/null and b/fogbackup/CAISSE/81/screenshot.png differ diff --git a/fogbackup/MobDR/668/image.png b/fogbackup/MobDR/668/image.png new file mode 100644 index 0000000..99cc159 Binary files /dev/null and b/fogbackup/MobDR/668/image.png differ diff --git a/fogbackup/MobDR/669/image.png b/fogbackup/MobDR/669/image.png new file mode 100644 index 0000000..45e80ef Binary files /dev/null and b/fogbackup/MobDR/669/image.png differ diff --git a/fogbackup/MobDR/673/image.png b/fogbackup/MobDR/673/image.png new file mode 100644 index 0000000..2c3d57b Binary files /dev/null and b/fogbackup/MobDR/673/image.png differ diff --git a/fogbackup/MobDR/674/Pasted image from 18062018, 183150.png b/fogbackup/MobDR/674/Pasted image from 18062018, 183150.png new file mode 100644 index 0000000..236a3c9 Binary files /dev/null and b/fogbackup/MobDR/674/Pasted image from 18062018, 183150.png differ diff --git a/fogbackup/MobDR/703/Pasted image from 21022019, 150821.png b/fogbackup/MobDR/703/Pasted image from 21022019, 150821.png new file mode 100644 index 0000000..5cef259 Binary files /dev/null and b/fogbackup/MobDR/703/Pasted image from 21022019, 150821.png differ diff --git a/fogbackup/MobDR/703/screenshot.png b/fogbackup/MobDR/703/screenshot.png new file mode 100644 index 0000000..6506baa Binary files /dev/null and b/fogbackup/MobDR/703/screenshot.png differ diff --git a/fogbackup/MobDR/705/Pasted image from 07022019, 060517.png b/fogbackup/MobDR/705/Pasted image from 07022019, 060517.png new file mode 100644 index 0000000..d5597df Binary files /dev/null and b/fogbackup/MobDR/705/Pasted image from 07022019, 060517.png differ diff --git a/fogbackup/Mobile Portal/144/screenshot.png b/fogbackup/Mobile Portal/144/screenshot.png new file mode 100644 index 0000000..0ef659b Binary files /dev/null and b/fogbackup/Mobile Portal/144/screenshot.png differ diff --git a/fogbackup/Mobile Portal/151/horaire.jpg b/fogbackup/Mobile Portal/151/horaire.jpg new file mode 100644 index 0000000..8a53e00 Binary files /dev/null and b/fogbackup/Mobile Portal/151/horaire.jpg differ diff --git a/fogbackup/Mobile Portal/153/concept.jpg b/fogbackup/Mobile Portal/153/concept.jpg new file mode 100644 index 0000000..e1835d4 Binary files /dev/null and b/fogbackup/Mobile Portal/153/concept.jpg differ diff --git a/fogbackup/Mobile Portal/194/Pasted image from 24122018, 144459.png b/fogbackup/Mobile Portal/194/Pasted image from 24122018, 144459.png new file mode 100644 index 0000000..f46abba Binary files /dev/null and b/fogbackup/Mobile Portal/194/Pasted image from 24122018, 144459.png differ diff --git a/fogbackup/Mobile Portal/194/Pasted image from 24122018, 164233.png b/fogbackup/Mobile Portal/194/Pasted image from 24122018, 164233.png new file mode 100644 index 0000000..006486c Binary files /dev/null and b/fogbackup/Mobile Portal/194/Pasted image from 24122018, 164233.png differ diff --git a/fogbackup/Mobile Portal/194/Pasted image from 27012019, 083141.png b/fogbackup/Mobile Portal/194/Pasted image from 27012019, 083141.png new file mode 100644 index 0000000..671689f Binary files /dev/null and b/fogbackup/Mobile Portal/194/Pasted image from 27012019, 083141.png differ diff --git a/fogbackup/Mobile Portal/194/image.png b/fogbackup/Mobile Portal/194/image.png new file mode 100644 index 0000000..141c3f8 Binary files /dev/null and b/fogbackup/Mobile Portal/194/image.png differ diff --git a/fogbackup/Mobile Portal/202/screenshot.png b/fogbackup/Mobile Portal/202/screenshot.png new file mode 100644 index 0000000..16b4ff4 Binary files /dev/null and b/fogbackup/Mobile Portal/202/screenshot.png differ diff --git a/fogbackup/Mobile Portal/214/screenshot.png b/fogbackup/Mobile Portal/214/screenshot.png new file mode 100644 index 0000000..c60c02f Binary files /dev/null and b/fogbackup/Mobile Portal/214/screenshot.png differ diff --git a/fogbackup/Mobile Portal/242/screenshot.png b/fogbackup/Mobile Portal/242/screenshot.png new file mode 100644 index 0000000..5379266 Binary files /dev/null and b/fogbackup/Mobile Portal/242/screenshot.png differ diff --git a/fogbackup/Mobile Portal/276/screenshot.png b/fogbackup/Mobile Portal/276/screenshot.png new file mode 100644 index 0000000..9760fde Binary files /dev/null and b/fogbackup/Mobile Portal/276/screenshot.png differ diff --git a/fogbackup/Mobile Portal/308/screenshot.png b/fogbackup/Mobile Portal/308/screenshot.png new file mode 100644 index 0000000..f49e1ba Binary files /dev/null and b/fogbackup/Mobile Portal/308/screenshot.png differ diff --git a/fogbackup/Mobile Portal/310/image.png b/fogbackup/Mobile Portal/310/image.png new file mode 100644 index 0000000..0c6aa6d Binary files /dev/null and b/fogbackup/Mobile Portal/310/image.png differ diff --git a/fogbackup/Mobile Portal/313/screenshot.png b/fogbackup/Mobile Portal/313/screenshot.png new file mode 100644 index 0000000..6bfebe5 Binary files /dev/null and b/fogbackup/Mobile Portal/313/screenshot.png differ diff --git a/fogbackup/Mobile Portal/334/image.png b/fogbackup/Mobile Portal/334/image.png new file mode 100644 index 0000000..cf026d7 Binary files /dev/null and b/fogbackup/Mobile Portal/334/image.png differ diff --git a/fogbackup/Mobile Portal/338/confirmation.png b/fogbackup/Mobile Portal/338/confirmation.png new file mode 100644 index 0000000..c5e7ef1 Binary files /dev/null and b/fogbackup/Mobile Portal/338/confirmation.png differ diff --git a/fogbackup/Mobile Portal/338/screenshot.png b/fogbackup/Mobile Portal/338/screenshot.png new file mode 100644 index 0000000..1512d75 Binary files /dev/null and b/fogbackup/Mobile Portal/338/screenshot.png differ diff --git a/fogbackup/Mobile Portal/339/screenshot.png b/fogbackup/Mobile Portal/339/screenshot.png new file mode 100644 index 0000000..d52fb34 Binary files /dev/null and b/fogbackup/Mobile Portal/339/screenshot.png differ diff --git a/fogbackup/Mobile Portal/347/screenshot.png b/fogbackup/Mobile Portal/347/screenshot.png new file mode 100644 index 0000000..c99f66f Binary files /dev/null and b/fogbackup/Mobile Portal/347/screenshot.png differ diff --git a/fogbackup/Mobile Portal/349/screenshot.png b/fogbackup/Mobile Portal/349/screenshot.png new file mode 100644 index 0000000..436962b Binary files /dev/null and b/fogbackup/Mobile Portal/349/screenshot.png differ diff --git a/fogbackup/Mobile Portal/351/screenshot.png b/fogbackup/Mobile Portal/351/screenshot.png new file mode 100644 index 0000000..051d7b0 Binary files /dev/null and b/fogbackup/Mobile Portal/351/screenshot.png differ diff --git a/fogbackup/Mobile Portal/352/screenshot.png b/fogbackup/Mobile Portal/352/screenshot.png new file mode 100644 index 0000000..8f7e8f5 Binary files /dev/null and b/fogbackup/Mobile Portal/352/screenshot.png differ diff --git a/fogbackup/Mobile Portal/355/screenshot.png b/fogbackup/Mobile Portal/355/screenshot.png new file mode 100644 index 0000000..af6cbe0 Binary files /dev/null and b/fogbackup/Mobile Portal/355/screenshot.png differ diff --git a/fogbackup/Mobile Portal/358/Concurrence.java b/fogbackup/Mobile Portal/358/Concurrence.java new file mode 100644 index 0000000..dc2ee91 --- /dev/null +++ b/fogbackup/Mobile Portal/358/Concurrence.java @@ -0,0 +1,186 @@ +// .///. +// (0 o) +//-------------0000--(_)--0000--------------- +// +// (C) 2012-2014 Frédérik BENOIST / Garsys +// Tout droits réservés +// +// oooO Oooo +//------------( )-----( )--------------- +// \ ( ) / +// \_) (_/ +package RestWebServices; + +import javax.ws.rs.Consumes; +import javax.ws.rs.DELETE; +import javax.ws.rs.FormParam; +import javax.ws.rs.core.Context; +import javax.ws.rs.core.UriInfo; +import javax.ws.rs.Path; +import javax.ws.rs.GET; +import javax.ws.rs.PUT; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.core.Response; +import my.lib.db.CallDB; +import my.lib.rest.RestUtils; +import org.json.JSONObject; + +@Path("Concurrence") +public class Concurrence { + + @Context + private UriInfo context; + + /** + * Creates a new instance of Concurrence + */ + public Concurrence() { + } + + /** + * Récupération de la liste des enseignes concurrentes + */ + @GET + @Path("/liste") + @Produces("application/json") + public Response getListe(@QueryParam("guid") String pguid) { + JSONObject oResult = new JSONObject(); + JSONObject oParam = new JSONObject(); + CallDB oDb = new CallDB(); + + // json des paramètres + oParam.put("guid", pguid); + + oResult = oDb.jsCallPROCReturnCLOB( + "p_mportal_concurrence.ws_concurrence_ens_liste", + oParam); + + if (oDb.CallSuccess()) { + return RestUtils.MakeResponse(oResult.toString()); + } else { + return RestUtils.MakeResponse("{}"); + } + } + + /** + * retourne les informations d'un concurrent + */ + @GET + @Path("/info/{pid_concurrence_enseigne}") + @Produces("application/json") + public Response getInfo( + @PathParam("pid_concurrence_enseigne") int pid_concurrence_enseigne, + @QueryParam("guid") String pguid) { + JSONObject oResult = new JSONObject(); + JSONObject oParam = new JSONObject(); + CallDB oDb = new CallDB(); + + // json des paramètres + oParam.put("guid", pguid); + oParam.put("id_concurrence_enseigne", pid_concurrence_enseigne); + + oResult = oDb.jsCallPROCReturnVARCHAR2( + "p_mportal_concurrence.ws_concurrence_ens_get", + oParam); + + if (oDb.CallSuccess()) { + return RestUtils.MakeResponse(oResult.toString()); + } else { + return RestUtils.MakeResponse("{}"); + } + } + + /** + * enregistre les informations d'un nouveau concurrent + */ + @GET + @Path("/nouveau") + @Produces("application/json") + public Response getNouveau( + @QueryParam("guid") String pguid, + @QueryParam("libelle") String plibelle, + @QueryParam("site_web") String psite_web) { + JSONObject oResult = new JSONObject(); + JSONObject oParam = new JSONObject(); + CallDB oDb = new CallDB(); + + // json des paramètres + oParam.put("guid", pguid); + oParam.put("libelle", plibelle); + oParam.put("site_web", psite_web); + + oResult = oDb.jsCallPROCReturnVARCHAR2( + "p_mportal_concurrence.ws_concurrence_ens_new", + oParam); + + if (oDb.CallSuccess()) { + return RestUtils.MakeResponse(oResult.toString()); + } else { + return RestUtils.MakeResponse("{}"); + } + } + + /** + * modifie les informations d'un concurrent + */ + @PUT + @Path("/modifie/{pid_concurrence_enseigne}") + @Consumes("application/x-www-form-urlencoded") + @Produces("application/json") + public Response putModifie( + @PathParam("pid_concurrence_enseigne") int pid_concurrence_enseigne, + @FormParam("guid") String pguid, + @FormParam("libelle") String plibelle, + @FormParam("site_web") String psite_web) { + JSONObject oResult = new JSONObject(); + JSONObject oParam = new JSONObject(); + CallDB oDb = new CallDB(); + + // json des paramètres + oParam.put("guid", pguid); + oParam.put("id_concurrence_enseigne", pid_concurrence_enseigne); + oParam.put("libelle", plibelle); + oParam.put("site_web", psite_web); + + oResult = oDb.jsCallPROCReturnVARCHAR2( + "p_mportal_concurrence.ws_concurrence_ens_mod", + oParam); + + if (oDb.CallSuccess()) { + return RestUtils.MakeResponse(oResult.toString()); + } else { + return RestUtils.MakeResponse("{}"); + } + } + + /** + * supprime un concurrent + */ + @DELETE + @Path("/supprime/{pid_concurrence_enseigne}") + @Consumes("application/x-www-form-urlencoded") + @Produces("application/json") + public Response delSupprime( + @PathParam("pid_concurrence_enseigne") int pid_concurrence_enseigne, + @FormParam("guid") String pguid) { + JSONObject oResult = new JSONObject(); + JSONObject oParam = new JSONObject(); + CallDB oDb = new CallDB(); + + // json des paramètres + oParam.put("guid", pguid); + oParam.put("id_concurrence_enseigne", pid_concurrence_enseigne); + + oResult = oDb.jsCallPROCReturnVARCHAR2( + "p_mportal_concurrence.ws_concurrence_ens_del", + oParam); + + if (oDb.CallSuccess()) { + return RestUtils.MakeResponse(oResult.toString()); + } else { + return RestUtils.MakeResponse("{}"); + } + } +} diff --git a/fogbackup/Mobile Portal/360/screenshot.png b/fogbackup/Mobile Portal/360/screenshot.png new file mode 100644 index 0000000..d8e8296 Binary files /dev/null and b/fogbackup/Mobile Portal/360/screenshot.png differ diff --git a/fogbackup/Mobile Portal/364/screenshot.png b/fogbackup/Mobile Portal/364/screenshot.png new file mode 100644 index 0000000..fc18623 Binary files /dev/null and b/fogbackup/Mobile Portal/364/screenshot.png differ diff --git a/fogbackup/Mobile Portal/366/screenshot.png b/fogbackup/Mobile Portal/366/screenshot.png new file mode 100644 index 0000000..53be558 Binary files /dev/null and b/fogbackup/Mobile Portal/366/screenshot.png differ diff --git a/fogbackup/Mobile Portal/370/screenshot.png b/fogbackup/Mobile Portal/370/screenshot.png new file mode 100644 index 0000000..e298a9a Binary files /dev/null and b/fogbackup/Mobile Portal/370/screenshot.png differ diff --git a/fogbackup/Mobile Portal/371/screenshot.png b/fogbackup/Mobile Portal/371/screenshot.png new file mode 100644 index 0000000..ac63c33 Binary files /dev/null and b/fogbackup/Mobile Portal/371/screenshot.png differ diff --git a/fogbackup/Mobile Portal/372/screenshot.png b/fogbackup/Mobile Portal/372/screenshot.png new file mode 100644 index 0000000..649bf4f Binary files /dev/null and b/fogbackup/Mobile Portal/372/screenshot.png differ diff --git a/fogbackup/Mobile Portal/374/Video_2016-02-09_092158.wmv b/fogbackup/Mobile Portal/374/Video_2016-02-09_092158.wmv new file mode 100644 index 0000000..12cf0cc Binary files /dev/null and b/fogbackup/Mobile Portal/374/Video_2016-02-09_092158.wmv differ diff --git a/fogbackup/Mobile Portal/374/screenshot.png b/fogbackup/Mobile Portal/374/screenshot.png new file mode 100644 index 0000000..2af3d60 Binary files /dev/null and b/fogbackup/Mobile Portal/374/screenshot.png differ diff --git a/fogbackup/Mobile Portal/375/screenshot.png b/fogbackup/Mobile Portal/375/screenshot.png new file mode 100644 index 0000000..579d77e Binary files /dev/null and b/fogbackup/Mobile Portal/375/screenshot.png differ diff --git a/fogbackup/Mobile Portal/377/screenshot.png b/fogbackup/Mobile Portal/377/screenshot.png new file mode 100644 index 0000000..9aa2549 Binary files /dev/null and b/fogbackup/Mobile Portal/377/screenshot.png differ diff --git a/fogbackup/Mobile Portal/378/screenshot.png b/fogbackup/Mobile Portal/378/screenshot.png new file mode 100644 index 0000000..4370a94 Binary files /dev/null and b/fogbackup/Mobile Portal/378/screenshot.png differ diff --git a/fogbackup/Mobile Portal/379/screenshot.png b/fogbackup/Mobile Portal/379/screenshot.png new file mode 100644 index 0000000..c000ed2 Binary files /dev/null and b/fogbackup/Mobile Portal/379/screenshot.png differ diff --git a/fogbackup/Mobile Portal/380/screenshot.png b/fogbackup/Mobile Portal/380/screenshot.png new file mode 100644 index 0000000..058e57f Binary files /dev/null and b/fogbackup/Mobile Portal/380/screenshot.png differ diff --git a/fogbackup/Mobile Portal/382/screenshot.png b/fogbackup/Mobile Portal/382/screenshot.png new file mode 100644 index 0000000..3d4f91d Binary files /dev/null and b/fogbackup/Mobile Portal/382/screenshot.png differ diff --git a/fogbackup/Mobile Portal/383/screenshot.png b/fogbackup/Mobile Portal/383/screenshot.png new file mode 100644 index 0000000..0ff2acc Binary files /dev/null and b/fogbackup/Mobile Portal/383/screenshot.png differ diff --git a/fogbackup/Mobile Portal/384/screenshot.png b/fogbackup/Mobile Portal/384/screenshot.png new file mode 100644 index 0000000..fb955ac Binary files /dev/null and b/fogbackup/Mobile Portal/384/screenshot.png differ diff --git a/fogbackup/Mobile Portal/385/screenshot.png b/fogbackup/Mobile Portal/385/screenshot.png new file mode 100644 index 0000000..739439d Binary files /dev/null and b/fogbackup/Mobile Portal/385/screenshot.png differ diff --git a/fogbackup/Mobile Portal/388/screenshot.png b/fogbackup/Mobile Portal/388/screenshot.png new file mode 100644 index 0000000..073c2a9 Binary files /dev/null and b/fogbackup/Mobile Portal/388/screenshot.png differ diff --git a/fogbackup/Mobile Portal/389/screenshot.png b/fogbackup/Mobile Portal/389/screenshot.png new file mode 100644 index 0000000..7f321a6 Binary files /dev/null and b/fogbackup/Mobile Portal/389/screenshot.png differ diff --git a/fogbackup/Mobile Portal/390/screenshot.png b/fogbackup/Mobile Portal/390/screenshot.png new file mode 100644 index 0000000..86fc0d9 Binary files /dev/null and b/fogbackup/Mobile Portal/390/screenshot.png differ diff --git a/fogbackup/Mobile Portal/391/screenshot.png b/fogbackup/Mobile Portal/391/screenshot.png new file mode 100644 index 0000000..69fa273 Binary files /dev/null and b/fogbackup/Mobile Portal/391/screenshot.png differ diff --git a/fogbackup/Mobile Portal/392/Confirm.jpg b/fogbackup/Mobile Portal/392/Confirm.jpg new file mode 100644 index 0000000..d89acba Binary files /dev/null and b/fogbackup/Mobile Portal/392/Confirm.jpg differ diff --git a/fogbackup/Mobile Portal/392/screenshot.png b/fogbackup/Mobile Portal/392/screenshot.png new file mode 100644 index 0000000..ea21542 Binary files /dev/null and b/fogbackup/Mobile Portal/392/screenshot.png differ diff --git a/fogbackup/Mobile Portal/393/screenshot.png b/fogbackup/Mobile Portal/393/screenshot.png new file mode 100644 index 0000000..2bb0a95 Binary files /dev/null and b/fogbackup/Mobile Portal/393/screenshot.png differ diff --git a/fogbackup/Mobile Portal/394/screenshot.png b/fogbackup/Mobile Portal/394/screenshot.png new file mode 100644 index 0000000..98d4047 Binary files /dev/null and b/fogbackup/Mobile Portal/394/screenshot.png differ diff --git a/fogbackup/Mobile Portal/395/screenshot.png b/fogbackup/Mobile Portal/395/screenshot.png new file mode 100644 index 0000000..d99f2bf Binary files /dev/null and b/fogbackup/Mobile Portal/395/screenshot.png differ diff --git a/fogbackup/Mobile Portal/396/screenshot.png b/fogbackup/Mobile Portal/396/screenshot.png new file mode 100644 index 0000000..10ffa45 Binary files /dev/null and b/fogbackup/Mobile Portal/396/screenshot.png differ diff --git a/fogbackup/Mobile Portal/397/screenshot.png b/fogbackup/Mobile Portal/397/screenshot.png new file mode 100644 index 0000000..b4c4968 Binary files /dev/null and b/fogbackup/Mobile Portal/397/screenshot.png differ diff --git a/fogbackup/Mobile Portal/398/screenshot.png b/fogbackup/Mobile Portal/398/screenshot.png new file mode 100644 index 0000000..3f5adfd Binary files /dev/null and b/fogbackup/Mobile Portal/398/screenshot.png differ diff --git a/fogbackup/Mobile Portal/399/screenshot.png b/fogbackup/Mobile Portal/399/screenshot.png new file mode 100644 index 0000000..7d33e22 Binary files /dev/null and b/fogbackup/Mobile Portal/399/screenshot.png differ diff --git a/fogbackup/Mobile Portal/400/screenshot.png b/fogbackup/Mobile Portal/400/screenshot.png new file mode 100644 index 0000000..2698d2d Binary files /dev/null and b/fogbackup/Mobile Portal/400/screenshot.png differ diff --git a/fogbackup/Mobile Portal/401/screenshot.png b/fogbackup/Mobile Portal/401/screenshot.png new file mode 100644 index 0000000..460d9ff Binary files /dev/null and b/fogbackup/Mobile Portal/401/screenshot.png differ diff --git a/fogbackup/Mobile Portal/402/image.png b/fogbackup/Mobile Portal/402/image.png new file mode 100644 index 0000000..7009274 Binary files /dev/null and b/fogbackup/Mobile Portal/402/image.png differ diff --git a/fogbackup/Mobile Portal/402/screenshot.png b/fogbackup/Mobile Portal/402/screenshot.png new file mode 100644 index 0000000..a3642c7 Binary files /dev/null and b/fogbackup/Mobile Portal/402/screenshot.png differ diff --git a/fogbackup/Mobile Portal/403/screenshot.png b/fogbackup/Mobile Portal/403/screenshot.png new file mode 100644 index 0000000..1090111 Binary files /dev/null and b/fogbackup/Mobile Portal/403/screenshot.png differ diff --git a/fogbackup/Mobile Portal/404/screenshot.png b/fogbackup/Mobile Portal/404/screenshot.png new file mode 100644 index 0000000..a2bf1b8 Binary files /dev/null and b/fogbackup/Mobile Portal/404/screenshot.png differ diff --git a/fogbackup/Mobile Portal/405/screenshot.png b/fogbackup/Mobile Portal/405/screenshot.png new file mode 100644 index 0000000..85a065d Binary files /dev/null and b/fogbackup/Mobile Portal/405/screenshot.png differ diff --git a/fogbackup/Mobile Portal/408/screenshot.png b/fogbackup/Mobile Portal/408/screenshot.png new file mode 100644 index 0000000..2bd6a5f Binary files /dev/null and b/fogbackup/Mobile Portal/408/screenshot.png differ diff --git a/fogbackup/Mobile Portal/411/screenshot.png b/fogbackup/Mobile Portal/411/screenshot.png new file mode 100644 index 0000000..a77370e Binary files /dev/null and b/fogbackup/Mobile Portal/411/screenshot.png differ diff --git a/fogbackup/Mobile Portal/412/screenshot.png b/fogbackup/Mobile Portal/412/screenshot.png new file mode 100644 index 0000000..5d3aeb4 Binary files /dev/null and b/fogbackup/Mobile Portal/412/screenshot.png differ diff --git a/fogbackup/Mobile Portal/413/screenshot.png b/fogbackup/Mobile Portal/413/screenshot.png new file mode 100644 index 0000000..e289b7b Binary files /dev/null and b/fogbackup/Mobile Portal/413/screenshot.png differ diff --git a/fogbackup/Mobile Portal/414/screenshot.png b/fogbackup/Mobile Portal/414/screenshot.png new file mode 100644 index 0000000..66498be Binary files /dev/null and b/fogbackup/Mobile Portal/414/screenshot.png differ diff --git a/fogbackup/Mobile Portal/415/screenshot.png b/fogbackup/Mobile Portal/415/screenshot.png new file mode 100644 index 0000000..859ee1a Binary files /dev/null and b/fogbackup/Mobile Portal/415/screenshot.png differ diff --git a/fogbackup/Mobile Portal/416/screenshot.png b/fogbackup/Mobile Portal/416/screenshot.png new file mode 100644 index 0000000..9f8f02e Binary files /dev/null and b/fogbackup/Mobile Portal/416/screenshot.png differ diff --git a/fogbackup/Mobile Portal/417/screenshot.png b/fogbackup/Mobile Portal/417/screenshot.png new file mode 100644 index 0000000..30de477 Binary files /dev/null and b/fogbackup/Mobile Portal/417/screenshot.png differ diff --git a/fogbackup/Mobile Portal/418/screenshot.png b/fogbackup/Mobile Portal/418/screenshot.png new file mode 100644 index 0000000..dd500eb Binary files /dev/null and b/fogbackup/Mobile Portal/418/screenshot.png differ diff --git a/fogbackup/Mobile Portal/424/screenshot.png b/fogbackup/Mobile Portal/424/screenshot.png new file mode 100644 index 0000000..076354a Binary files /dev/null and b/fogbackup/Mobile Portal/424/screenshot.png differ diff --git a/fogbackup/Mobile Portal/426/screenshot.png b/fogbackup/Mobile Portal/426/screenshot.png new file mode 100644 index 0000000..f850b3e Binary files /dev/null and b/fogbackup/Mobile Portal/426/screenshot.png differ diff --git a/fogbackup/Mobile Portal/427/screenshot.png b/fogbackup/Mobile Portal/427/screenshot.png new file mode 100644 index 0000000..1ffa7d0 Binary files /dev/null and b/fogbackup/Mobile Portal/427/screenshot.png differ diff --git a/fogbackup/Mobile Portal/428/screenshot.png b/fogbackup/Mobile Portal/428/screenshot.png new file mode 100644 index 0000000..74bd2bf Binary files /dev/null and b/fogbackup/Mobile Portal/428/screenshot.png differ diff --git a/fogbackup/Mobile Portal/429/screenshot.png b/fogbackup/Mobile Portal/429/screenshot.png new file mode 100644 index 0000000..0a13a79 Binary files /dev/null and b/fogbackup/Mobile Portal/429/screenshot.png differ diff --git a/fogbackup/Mobile Portal/430/screenshot.png b/fogbackup/Mobile Portal/430/screenshot.png new file mode 100644 index 0000000..79ac61e Binary files /dev/null and b/fogbackup/Mobile Portal/430/screenshot.png differ diff --git a/fogbackup/Mobile Portal/431/screenshot.png b/fogbackup/Mobile Portal/431/screenshot.png new file mode 100644 index 0000000..58753d6 Binary files /dev/null and b/fogbackup/Mobile Portal/431/screenshot.png differ diff --git a/fogbackup/Mobile Portal/434/screenshot.png b/fogbackup/Mobile Portal/434/screenshot.png new file mode 100644 index 0000000..61c983b Binary files /dev/null and b/fogbackup/Mobile Portal/434/screenshot.png differ diff --git a/fogbackup/Mobile Portal/438/screenshot.png b/fogbackup/Mobile Portal/438/screenshot.png new file mode 100644 index 0000000..60a3638 Binary files /dev/null and b/fogbackup/Mobile Portal/438/screenshot.png differ diff --git a/fogbackup/Mobile Portal/439/screenshot.png b/fogbackup/Mobile Portal/439/screenshot.png new file mode 100644 index 0000000..f44e682 Binary files /dev/null and b/fogbackup/Mobile Portal/439/screenshot.png differ diff --git a/fogbackup/Mobile Portal/440/image.png b/fogbackup/Mobile Portal/440/image.png new file mode 100644 index 0000000..392f774 Binary files /dev/null and b/fogbackup/Mobile Portal/440/image.png differ diff --git a/fogbackup/Mobile Portal/440/screenshot.png b/fogbackup/Mobile Portal/440/screenshot.png new file mode 100644 index 0000000..eee799f Binary files /dev/null and b/fogbackup/Mobile Portal/440/screenshot.png differ diff --git a/fogbackup/Mobile Portal/441/screenshot.png b/fogbackup/Mobile Portal/441/screenshot.png new file mode 100644 index 0000000..43a7cb0 Binary files /dev/null and b/fogbackup/Mobile Portal/441/screenshot.png differ diff --git a/fogbackup/Mobile Portal/442/screenshot.png b/fogbackup/Mobile Portal/442/screenshot.png new file mode 100644 index 0000000..1a12c79 Binary files /dev/null and b/fogbackup/Mobile Portal/442/screenshot.png differ diff --git a/fogbackup/Mobile Portal/443/screenshot.png b/fogbackup/Mobile Portal/443/screenshot.png new file mode 100644 index 0000000..fbd363e Binary files /dev/null and b/fogbackup/Mobile Portal/443/screenshot.png differ diff --git a/fogbackup/Mobile Portal/445/screenshot.png b/fogbackup/Mobile Portal/445/screenshot.png new file mode 100644 index 0000000..47aab96 Binary files /dev/null and b/fogbackup/Mobile Portal/445/screenshot.png differ diff --git a/fogbackup/Mobile Portal/446/screenshot.png b/fogbackup/Mobile Portal/446/screenshot.png new file mode 100644 index 0000000..82ed923 Binary files /dev/null and b/fogbackup/Mobile Portal/446/screenshot.png differ diff --git a/fogbackup/Mobile Portal/448/screenshot.png b/fogbackup/Mobile Portal/448/screenshot.png new file mode 100644 index 0000000..fc8bf2d Binary files /dev/null and b/fogbackup/Mobile Portal/448/screenshot.png differ diff --git a/fogbackup/Mobile Portal/449/screenshot.png b/fogbackup/Mobile Portal/449/screenshot.png new file mode 100644 index 0000000..73b8912 Binary files /dev/null and b/fogbackup/Mobile Portal/449/screenshot.png differ diff --git a/fogbackup/Mobile Portal/450/screenshot.png b/fogbackup/Mobile Portal/450/screenshot.png new file mode 100644 index 0000000..14c1da5 Binary files /dev/null and b/fogbackup/Mobile Portal/450/screenshot.png differ diff --git a/fogbackup/Mobile Portal/451/screenshot.png b/fogbackup/Mobile Portal/451/screenshot.png new file mode 100644 index 0000000..6d8c1df Binary files /dev/null and b/fogbackup/Mobile Portal/451/screenshot.png differ diff --git a/fogbackup/Mobile Portal/453/screenshot.png b/fogbackup/Mobile Portal/453/screenshot.png new file mode 100644 index 0000000..e42db00 Binary files /dev/null and b/fogbackup/Mobile Portal/453/screenshot.png differ diff --git a/fogbackup/Mobile Portal/454/screenshot.png b/fogbackup/Mobile Portal/454/screenshot.png new file mode 100644 index 0000000..59593c9 Binary files /dev/null and b/fogbackup/Mobile Portal/454/screenshot.png differ diff --git a/fogbackup/Mobile Portal/455/screenshot.png b/fogbackup/Mobile Portal/455/screenshot.png new file mode 100644 index 0000000..54f1229 Binary files /dev/null and b/fogbackup/Mobile Portal/455/screenshot.png differ diff --git a/fogbackup/Mobile Portal/457/screenshot.png b/fogbackup/Mobile Portal/457/screenshot.png new file mode 100644 index 0000000..c1cdb20 Binary files /dev/null and b/fogbackup/Mobile Portal/457/screenshot.png differ diff --git a/fogbackup/Mobile Portal/459/screenshot.png b/fogbackup/Mobile Portal/459/screenshot.png new file mode 100644 index 0000000..ac23a5d Binary files /dev/null and b/fogbackup/Mobile Portal/459/screenshot.png differ diff --git a/fogbackup/Mobile Portal/460/screenshot.png b/fogbackup/Mobile Portal/460/screenshot.png new file mode 100644 index 0000000..86c58c4 Binary files /dev/null and b/fogbackup/Mobile Portal/460/screenshot.png differ diff --git a/fogbackup/Mobile Portal/464/screenshot.png b/fogbackup/Mobile Portal/464/screenshot.png new file mode 100644 index 0000000..f2fabf0 Binary files /dev/null and b/fogbackup/Mobile Portal/464/screenshot.png differ diff --git a/fogbackup/Mobile Portal/466/screenshot.png b/fogbackup/Mobile Portal/466/screenshot.png new file mode 100644 index 0000000..c66fa1e Binary files /dev/null and b/fogbackup/Mobile Portal/466/screenshot.png differ diff --git a/fogbackup/Mobile Portal/471/image.png b/fogbackup/Mobile Portal/471/image.png new file mode 100644 index 0000000..9e3d2a1 Binary files /dev/null and b/fogbackup/Mobile Portal/471/image.png differ diff --git a/fogbackup/Mobile Portal/471/screenshot.png b/fogbackup/Mobile Portal/471/screenshot.png new file mode 100644 index 0000000..441db48 Binary files /dev/null and b/fogbackup/Mobile Portal/471/screenshot.png differ diff --git a/fogbackup/Mobile Portal/472/screenshot.png b/fogbackup/Mobile Portal/472/screenshot.png new file mode 100644 index 0000000..7ae6260 Binary files /dev/null and b/fogbackup/Mobile Portal/472/screenshot.png differ diff --git a/fogbackup/Mobile Portal/473/screenshot.png b/fogbackup/Mobile Portal/473/screenshot.png new file mode 100644 index 0000000..ed3f480 Binary files /dev/null and b/fogbackup/Mobile Portal/473/screenshot.png differ diff --git a/fogbackup/Mobile Portal/474/screenshot.png b/fogbackup/Mobile Portal/474/screenshot.png new file mode 100644 index 0000000..3bc2646 Binary files /dev/null and b/fogbackup/Mobile Portal/474/screenshot.png differ diff --git a/fogbackup/Mobile Portal/475/screenshot.png b/fogbackup/Mobile Portal/475/screenshot.png new file mode 100644 index 0000000..f22aeec Binary files /dev/null and b/fogbackup/Mobile Portal/475/screenshot.png differ diff --git a/fogbackup/Mobile Portal/476/screenshot.png b/fogbackup/Mobile Portal/476/screenshot.png new file mode 100644 index 0000000..a8824c1 Binary files /dev/null and b/fogbackup/Mobile Portal/476/screenshot.png differ diff --git a/fogbackup/Mobile Portal/477/screenshot.png b/fogbackup/Mobile Portal/477/screenshot.png new file mode 100644 index 0000000..5a895be Binary files /dev/null and b/fogbackup/Mobile Portal/477/screenshot.png differ diff --git a/fogbackup/Mobile Portal/478/screenshot.png b/fogbackup/Mobile Portal/478/screenshot.png new file mode 100644 index 0000000..9f60c1c Binary files /dev/null and b/fogbackup/Mobile Portal/478/screenshot.png differ diff --git a/fogbackup/Mobile Portal/479/screenshot.png b/fogbackup/Mobile Portal/479/screenshot.png new file mode 100644 index 0000000..a04bdae Binary files /dev/null and b/fogbackup/Mobile Portal/479/screenshot.png differ diff --git a/fogbackup/Mobile Portal/481/screenshot.png b/fogbackup/Mobile Portal/481/screenshot.png new file mode 100644 index 0000000..b8f1f48 Binary files /dev/null and b/fogbackup/Mobile Portal/481/screenshot.png differ diff --git a/fogbackup/Mobile Portal/482/screenshot.png b/fogbackup/Mobile Portal/482/screenshot.png new file mode 100644 index 0000000..0bb97ad Binary files /dev/null and b/fogbackup/Mobile Portal/482/screenshot.png differ diff --git a/fogbackup/Mobile Portal/483/screenshot.png b/fogbackup/Mobile Portal/483/screenshot.png new file mode 100644 index 0000000..d1d31b8 Binary files /dev/null and b/fogbackup/Mobile Portal/483/screenshot.png differ diff --git a/fogbackup/Mobile Portal/484/screenshot.png b/fogbackup/Mobile Portal/484/screenshot.png new file mode 100644 index 0000000..10d52f6 Binary files /dev/null and b/fogbackup/Mobile Portal/484/screenshot.png differ diff --git a/fogbackup/Mobile Portal/486/screenshot.png b/fogbackup/Mobile Portal/486/screenshot.png new file mode 100644 index 0000000..5fdb2bf Binary files /dev/null and b/fogbackup/Mobile Portal/486/screenshot.png differ diff --git a/fogbackup/Mobile Portal/487/screenshot.png b/fogbackup/Mobile Portal/487/screenshot.png new file mode 100644 index 0000000..7460583 Binary files /dev/null and b/fogbackup/Mobile Portal/487/screenshot.png differ diff --git a/fogbackup/Mobile Portal/488/screenshot.png b/fogbackup/Mobile Portal/488/screenshot.png new file mode 100644 index 0000000..442a9c3 Binary files /dev/null and b/fogbackup/Mobile Portal/488/screenshot.png differ diff --git a/fogbackup/Mobile Portal/489/screenshot.png b/fogbackup/Mobile Portal/489/screenshot.png new file mode 100644 index 0000000..498cb6f Binary files /dev/null and b/fogbackup/Mobile Portal/489/screenshot.png differ diff --git a/fogbackup/Mobile Portal/490/screenshot.png b/fogbackup/Mobile Portal/490/screenshot.png new file mode 100644 index 0000000..87d495c Binary files /dev/null and b/fogbackup/Mobile Portal/490/screenshot.png differ diff --git a/fogbackup/Mobile Portal/495/screenshot.png b/fogbackup/Mobile Portal/495/screenshot.png new file mode 100644 index 0000000..7fc9e71 Binary files /dev/null and b/fogbackup/Mobile Portal/495/screenshot.png differ diff --git a/fogbackup/Mobile Portal/496/screenshot.png b/fogbackup/Mobile Portal/496/screenshot.png new file mode 100644 index 0000000..ef3c5a3 Binary files /dev/null and b/fogbackup/Mobile Portal/496/screenshot.png differ diff --git a/fogbackup/Mobile Portal/497/screenshot.png b/fogbackup/Mobile Portal/497/screenshot.png new file mode 100644 index 0000000..a67d5a7 Binary files /dev/null and b/fogbackup/Mobile Portal/497/screenshot.png differ diff --git a/fogbackup/Mobile Portal/498/screenshot.png b/fogbackup/Mobile Portal/498/screenshot.png new file mode 100644 index 0000000..790d9ba Binary files /dev/null and b/fogbackup/Mobile Portal/498/screenshot.png differ diff --git a/fogbackup/Mobile Portal/499/screenshot.png b/fogbackup/Mobile Portal/499/screenshot.png new file mode 100644 index 0000000..a23f90a Binary files /dev/null and b/fogbackup/Mobile Portal/499/screenshot.png differ diff --git a/fogbackup/Mobile Portal/500/image.png b/fogbackup/Mobile Portal/500/image.png new file mode 100644 index 0000000..33bf08a Binary files /dev/null and b/fogbackup/Mobile Portal/500/image.png differ diff --git a/fogbackup/Mobile Portal/500/screenshot.png b/fogbackup/Mobile Portal/500/screenshot.png new file mode 100644 index 0000000..29bdd81 Binary files /dev/null and b/fogbackup/Mobile Portal/500/screenshot.png differ diff --git a/fogbackup/Mobile Portal/501/image.png b/fogbackup/Mobile Portal/501/image.png new file mode 100644 index 0000000..8537681 Binary files /dev/null and b/fogbackup/Mobile Portal/501/image.png differ diff --git a/fogbackup/Mobile Portal/502/screenshot.png b/fogbackup/Mobile Portal/502/screenshot.png new file mode 100644 index 0000000..bb1946b Binary files /dev/null and b/fogbackup/Mobile Portal/502/screenshot.png differ diff --git a/fogbackup/Mobile Portal/504/screenshot.png b/fogbackup/Mobile Portal/504/screenshot.png new file mode 100644 index 0000000..5ba520c Binary files /dev/null and b/fogbackup/Mobile Portal/504/screenshot.png differ diff --git a/fogbackup/Mobile Portal/505/screenshot.png b/fogbackup/Mobile Portal/505/screenshot.png new file mode 100644 index 0000000..2a5c8c2 Binary files /dev/null and b/fogbackup/Mobile Portal/505/screenshot.png differ diff --git a/fogbackup/Mobile Portal/507/screenshot.png b/fogbackup/Mobile Portal/507/screenshot.png new file mode 100644 index 0000000..c8b3db5 Binary files /dev/null and b/fogbackup/Mobile Portal/507/screenshot.png differ diff --git a/fogbackup/Mobile Portal/508/image.png b/fogbackup/Mobile Portal/508/image.png new file mode 100644 index 0000000..a85df6a Binary files /dev/null and b/fogbackup/Mobile Portal/508/image.png differ diff --git a/fogbackup/Mobile Portal/509/screenshot.png b/fogbackup/Mobile Portal/509/screenshot.png new file mode 100644 index 0000000..cb03073 Binary files /dev/null and b/fogbackup/Mobile Portal/509/screenshot.png differ diff --git a/fogbackup/Mobile Portal/511/screenshot.png b/fogbackup/Mobile Portal/511/screenshot.png new file mode 100644 index 0000000..6de536e Binary files /dev/null and b/fogbackup/Mobile Portal/511/screenshot.png differ diff --git a/fogbackup/Mobile Portal/514/image.png b/fogbackup/Mobile Portal/514/image.png new file mode 100644 index 0000000..f9f62bd Binary files /dev/null and b/fogbackup/Mobile Portal/514/image.png differ diff --git a/fogbackup/Mobile Portal/515/screenshot.png b/fogbackup/Mobile Portal/515/screenshot.png new file mode 100644 index 0000000..aded232 Binary files /dev/null and b/fogbackup/Mobile Portal/515/screenshot.png differ diff --git a/fogbackup/Mobile Portal/516/screenshot.png b/fogbackup/Mobile Portal/516/screenshot.png new file mode 100644 index 0000000..efb8da8 Binary files /dev/null and b/fogbackup/Mobile Portal/516/screenshot.png differ diff --git a/fogbackup/Mobile Portal/517/screenshot.png b/fogbackup/Mobile Portal/517/screenshot.png new file mode 100644 index 0000000..0357da6 Binary files /dev/null and b/fogbackup/Mobile Portal/517/screenshot.png differ diff --git a/fogbackup/Mobile Portal/518/screenshot.png b/fogbackup/Mobile Portal/518/screenshot.png new file mode 100644 index 0000000..22b4b2e Binary files /dev/null and b/fogbackup/Mobile Portal/518/screenshot.png differ diff --git a/fogbackup/Mobile Portal/519/screenshot.png b/fogbackup/Mobile Portal/519/screenshot.png new file mode 100644 index 0000000..877a895 Binary files /dev/null and b/fogbackup/Mobile Portal/519/screenshot.png differ diff --git a/fogbackup/Mobile Portal/520/screenshot.png b/fogbackup/Mobile Portal/520/screenshot.png new file mode 100644 index 0000000..48c2314 Binary files /dev/null and b/fogbackup/Mobile Portal/520/screenshot.png differ diff --git a/fogbackup/Mobile Portal/522/screenshot.png b/fogbackup/Mobile Portal/522/screenshot.png new file mode 100644 index 0000000..0ded83a Binary files /dev/null and b/fogbackup/Mobile Portal/522/screenshot.png differ diff --git a/fogbackup/Mobile Portal/523/screenshot.png b/fogbackup/Mobile Portal/523/screenshot.png new file mode 100644 index 0000000..b32b413 Binary files /dev/null and b/fogbackup/Mobile Portal/523/screenshot.png differ diff --git a/fogbackup/Mobile Portal/524/screenshot.png b/fogbackup/Mobile Portal/524/screenshot.png new file mode 100644 index 0000000..1bec538 Binary files /dev/null and b/fogbackup/Mobile Portal/524/screenshot.png differ diff --git a/fogbackup/Mobile Portal/525/screenshot.png b/fogbackup/Mobile Portal/525/screenshot.png new file mode 100644 index 0000000..8dd4cc7 Binary files /dev/null and b/fogbackup/Mobile Portal/525/screenshot.png differ diff --git a/fogbackup/Mobile Portal/529/image.png b/fogbackup/Mobile Portal/529/image.png new file mode 100644 index 0000000..8166cdc Binary files /dev/null and b/fogbackup/Mobile Portal/529/image.png differ diff --git a/fogbackup/Mobile Portal/532/image.png b/fogbackup/Mobile Portal/532/image.png new file mode 100644 index 0000000..5b7b9c1 Binary files /dev/null and b/fogbackup/Mobile Portal/532/image.png differ diff --git a/fogbackup/Mobile Portal/535/image.png b/fogbackup/Mobile Portal/535/image.png new file mode 100644 index 0000000..935921f Binary files /dev/null and b/fogbackup/Mobile Portal/535/image.png differ diff --git a/fogbackup/Mobile Portal/536/screenshot.png b/fogbackup/Mobile Portal/536/screenshot.png new file mode 100644 index 0000000..ba8387b Binary files /dev/null and b/fogbackup/Mobile Portal/536/screenshot.png differ diff --git a/fogbackup/Mobile Portal/537/image.png b/fogbackup/Mobile Portal/537/image.png new file mode 100644 index 0000000..4ed38be Binary files /dev/null and b/fogbackup/Mobile Portal/537/image.png differ diff --git a/fogbackup/Mobile Portal/537/screenshot.png b/fogbackup/Mobile Portal/537/screenshot.png new file mode 100644 index 0000000..3571e85 Binary files /dev/null and b/fogbackup/Mobile Portal/537/screenshot.png differ diff --git a/fogbackup/Mobile Portal/539/image.png b/fogbackup/Mobile Portal/539/image.png new file mode 100644 index 0000000..d049f2e Binary files /dev/null and b/fogbackup/Mobile Portal/539/image.png differ diff --git a/fogbackup/Mobile Portal/540/screenshot.png b/fogbackup/Mobile Portal/540/screenshot.png new file mode 100644 index 0000000..584dde8 Binary files /dev/null and b/fogbackup/Mobile Portal/540/screenshot.png differ diff --git a/fogbackup/Mobile Portal/541/image.png b/fogbackup/Mobile Portal/541/image.png new file mode 100644 index 0000000..92777b6 Binary files /dev/null and b/fogbackup/Mobile Portal/541/image.png differ diff --git a/fogbackup/Mobile Portal/541/screenshot.png b/fogbackup/Mobile Portal/541/screenshot.png new file mode 100644 index 0000000..5fe63af Binary files /dev/null and b/fogbackup/Mobile Portal/541/screenshot.png differ diff --git a/fogbackup/Mobile Portal/543/screenshot.png b/fogbackup/Mobile Portal/543/screenshot.png new file mode 100644 index 0000000..23ccd8a Binary files /dev/null and b/fogbackup/Mobile Portal/543/screenshot.png differ diff --git a/fogbackup/Mobile Portal/544/image.png b/fogbackup/Mobile Portal/544/image.png new file mode 100644 index 0000000..ed5177f Binary files /dev/null and b/fogbackup/Mobile Portal/544/image.png differ diff --git a/fogbackup/Mobile Portal/544/screenshot.png b/fogbackup/Mobile Portal/544/screenshot.png new file mode 100644 index 0000000..6a9fb45 Binary files /dev/null and b/fogbackup/Mobile Portal/544/screenshot.png differ diff --git a/fogbackup/Mobile Portal/546/screenshot.png b/fogbackup/Mobile Portal/546/screenshot.png new file mode 100644 index 0000000..2cb6001 Binary files /dev/null and b/fogbackup/Mobile Portal/546/screenshot.png differ diff --git a/fogbackup/Mobile Portal/547/screenshot.png b/fogbackup/Mobile Portal/547/screenshot.png new file mode 100644 index 0000000..7e710c0 Binary files /dev/null and b/fogbackup/Mobile Portal/547/screenshot.png differ diff --git a/fogbackup/Mobile Portal/548/screenshot.png b/fogbackup/Mobile Portal/548/screenshot.png new file mode 100644 index 0000000..d64e48f Binary files /dev/null and b/fogbackup/Mobile Portal/548/screenshot.png differ diff --git a/fogbackup/Mobile Portal/550/Pasted image from 24122018, 140111.png b/fogbackup/Mobile Portal/550/Pasted image from 24122018, 140111.png new file mode 100644 index 0000000..aef8964 Binary files /dev/null and b/fogbackup/Mobile Portal/550/Pasted image from 24122018, 140111.png differ diff --git a/fogbackup/Mobile Portal/550/Pasted image from 24122018, 140225.png b/fogbackup/Mobile Portal/550/Pasted image from 24122018, 140225.png new file mode 100644 index 0000000..6888e43 Binary files /dev/null and b/fogbackup/Mobile Portal/550/Pasted image from 24122018, 140225.png differ diff --git a/fogbackup/Mobile Portal/550/image.png b/fogbackup/Mobile Portal/550/image.png new file mode 100644 index 0000000..0fd624e Binary files /dev/null and b/fogbackup/Mobile Portal/550/image.png differ diff --git a/fogbackup/Mobile Portal/550/screenshot.png b/fogbackup/Mobile Portal/550/screenshot.png new file mode 100644 index 0000000..5505ea7 Binary files /dev/null and b/fogbackup/Mobile Portal/550/screenshot.png differ diff --git a/fogbackup/Mobile Portal/551/screenshot.png b/fogbackup/Mobile Portal/551/screenshot.png new file mode 100644 index 0000000..1811520 Binary files /dev/null and b/fogbackup/Mobile Portal/551/screenshot.png differ diff --git a/fogbackup/Mobile Portal/552/screenshot.png b/fogbackup/Mobile Portal/552/screenshot.png new file mode 100644 index 0000000..08e46cd Binary files /dev/null and b/fogbackup/Mobile Portal/552/screenshot.png differ diff --git a/fogbackup/Mobile Portal/553/image.png b/fogbackup/Mobile Portal/553/image.png new file mode 100644 index 0000000..4a83d23 Binary files /dev/null and b/fogbackup/Mobile Portal/553/image.png differ diff --git a/fogbackup/Mobile Portal/554/screenshot.png b/fogbackup/Mobile Portal/554/screenshot.png new file mode 100644 index 0000000..420d6e4 Binary files /dev/null and b/fogbackup/Mobile Portal/554/screenshot.png differ diff --git a/fogbackup/Mobile Portal/555/screenshot.png b/fogbackup/Mobile Portal/555/screenshot.png new file mode 100644 index 0000000..d037dce Binary files /dev/null and b/fogbackup/Mobile Portal/555/screenshot.png differ diff --git a/fogbackup/Mobile Portal/556/image.png b/fogbackup/Mobile Portal/556/image.png new file mode 100644 index 0000000..2fdd432 Binary files /dev/null and b/fogbackup/Mobile Portal/556/image.png differ diff --git a/fogbackup/Mobile Portal/557/screenshot.png b/fogbackup/Mobile Portal/557/screenshot.png new file mode 100644 index 0000000..64b89cc Binary files /dev/null and b/fogbackup/Mobile Portal/557/screenshot.png differ diff --git a/fogbackup/Mobile Portal/558/screenshot.png b/fogbackup/Mobile Portal/558/screenshot.png new file mode 100644 index 0000000..9ab2829 Binary files /dev/null and b/fogbackup/Mobile Portal/558/screenshot.png differ diff --git a/fogbackup/Mobile Portal/559/screenshot.png b/fogbackup/Mobile Portal/559/screenshot.png new file mode 100644 index 0000000..90616bc Binary files /dev/null and b/fogbackup/Mobile Portal/559/screenshot.png differ diff --git a/fogbackup/Mobile Portal/560/toto.jpg b/fogbackup/Mobile Portal/560/toto.jpg new file mode 100644 index 0000000..dbd9a84 Binary files /dev/null and b/fogbackup/Mobile Portal/560/toto.jpg differ diff --git a/fogbackup/Mobile Portal/561/image.png b/fogbackup/Mobile Portal/561/image.png new file mode 100644 index 0000000..1483c58 Binary files /dev/null and b/fogbackup/Mobile Portal/561/image.png differ diff --git a/fogbackup/Mobile Portal/562/screenshot.png b/fogbackup/Mobile Portal/562/screenshot.png new file mode 100644 index 0000000..5b48b90 Binary files /dev/null and b/fogbackup/Mobile Portal/562/screenshot.png differ diff --git a/fogbackup/Mobile Portal/563/screenshot.png b/fogbackup/Mobile Portal/563/screenshot.png new file mode 100644 index 0000000..6d58686 Binary files /dev/null and b/fogbackup/Mobile Portal/563/screenshot.png differ diff --git a/fogbackup/Mobile Portal/565/image.png b/fogbackup/Mobile Portal/565/image.png new file mode 100644 index 0000000..376baa3 Binary files /dev/null and b/fogbackup/Mobile Portal/565/image.png differ diff --git a/fogbackup/Mobile Portal/566/image.png b/fogbackup/Mobile Portal/566/image.png new file mode 100644 index 0000000..93ce367 Binary files /dev/null and b/fogbackup/Mobile Portal/566/image.png differ diff --git a/fogbackup/Mobile Portal/566/screenshot.png b/fogbackup/Mobile Portal/566/screenshot.png new file mode 100644 index 0000000..3a97c21 Binary files /dev/null and b/fogbackup/Mobile Portal/566/screenshot.png differ diff --git a/fogbackup/Mobile Portal/569/image.png b/fogbackup/Mobile Portal/569/image.png new file mode 100644 index 0000000..92fcbbd Binary files /dev/null and b/fogbackup/Mobile Portal/569/image.png differ diff --git a/fogbackup/Mobile Portal/569/screenshot.png b/fogbackup/Mobile Portal/569/screenshot.png new file mode 100644 index 0000000..1fca809 Binary files /dev/null and b/fogbackup/Mobile Portal/569/screenshot.png differ diff --git a/fogbackup/Mobile Portal/570/screenshot.png b/fogbackup/Mobile Portal/570/screenshot.png new file mode 100644 index 0000000..d18be02 Binary files /dev/null and b/fogbackup/Mobile Portal/570/screenshot.png differ diff --git a/fogbackup/Mobile Portal/574/screenshot.png b/fogbackup/Mobile Portal/574/screenshot.png new file mode 100644 index 0000000..8b954dc Binary files /dev/null and b/fogbackup/Mobile Portal/574/screenshot.png differ diff --git a/fogbackup/Mobile Portal/575/screenshot.png b/fogbackup/Mobile Portal/575/screenshot.png new file mode 100644 index 0000000..5ea5933 Binary files /dev/null and b/fogbackup/Mobile Portal/575/screenshot.png differ diff --git a/fogbackup/Mobile Portal/576/image.png b/fogbackup/Mobile Portal/576/image.png new file mode 100644 index 0000000..e4fe563 Binary files /dev/null and b/fogbackup/Mobile Portal/576/image.png differ diff --git a/fogbackup/Mobile Portal/577/image.png b/fogbackup/Mobile Portal/577/image.png new file mode 100644 index 0000000..1067d9f Binary files /dev/null and b/fogbackup/Mobile Portal/577/image.png differ diff --git a/fogbackup/Mobile Portal/577/screenshot.png b/fogbackup/Mobile Portal/577/screenshot.png new file mode 100644 index 0000000..a0aee64 Binary files /dev/null and b/fogbackup/Mobile Portal/577/screenshot.png differ diff --git a/fogbackup/Mobile Portal/578/image.png b/fogbackup/Mobile Portal/578/image.png new file mode 100644 index 0000000..3199ed6 Binary files /dev/null and b/fogbackup/Mobile Portal/578/image.png differ diff --git a/fogbackup/Mobile Portal/579/image.png b/fogbackup/Mobile Portal/579/image.png new file mode 100644 index 0000000..832a584 Binary files /dev/null and b/fogbackup/Mobile Portal/579/image.png differ diff --git a/fogbackup/Mobile Portal/579/screenshot.png b/fogbackup/Mobile Portal/579/screenshot.png new file mode 100644 index 0000000..d2458c1 Binary files /dev/null and b/fogbackup/Mobile Portal/579/screenshot.png differ diff --git a/fogbackup/Mobile Portal/580/image.png b/fogbackup/Mobile Portal/580/image.png new file mode 100644 index 0000000..f51718d Binary files /dev/null and b/fogbackup/Mobile Portal/580/image.png differ diff --git a/fogbackup/Mobile Portal/580/screenshot.png b/fogbackup/Mobile Portal/580/screenshot.png new file mode 100644 index 0000000..a311372 Binary files /dev/null and b/fogbackup/Mobile Portal/580/screenshot.png differ diff --git a/fogbackup/Mobile Portal/581/screenshot.png b/fogbackup/Mobile Portal/581/screenshot.png new file mode 100644 index 0000000..b23a393 Binary files /dev/null and b/fogbackup/Mobile Portal/581/screenshot.png differ diff --git a/fogbackup/Mobile Portal/582/screenshot.png b/fogbackup/Mobile Portal/582/screenshot.png new file mode 100644 index 0000000..81fc9e9 Binary files /dev/null and b/fogbackup/Mobile Portal/582/screenshot.png differ diff --git a/fogbackup/Mobile Portal/583/screenshot.png b/fogbackup/Mobile Portal/583/screenshot.png new file mode 100644 index 0000000..2b5fe98 Binary files /dev/null and b/fogbackup/Mobile Portal/583/screenshot.png differ diff --git a/fogbackup/Mobile Portal/584/screenshot.png b/fogbackup/Mobile Portal/584/screenshot.png new file mode 100644 index 0000000..77b5810 Binary files /dev/null and b/fogbackup/Mobile Portal/584/screenshot.png differ diff --git a/fogbackup/Mobile Portal/586/screenshot.png b/fogbackup/Mobile Portal/586/screenshot.png new file mode 100644 index 0000000..cb02276 Binary files /dev/null and b/fogbackup/Mobile Portal/586/screenshot.png differ diff --git a/fogbackup/Mobile Portal/587/Tableaux de bord IKKS Men 20161211 MENSUEL DECEMBRE.pdf b/fogbackup/Mobile Portal/587/Tableaux de bord IKKS Men 20161211 MENSUEL DECEMBRE.pdf new file mode 100644 index 0000000..f83cc02 Binary files /dev/null and b/fogbackup/Mobile Portal/587/Tableaux de bord IKKS Men 20161211 MENSUEL DECEMBRE.pdf differ diff --git a/fogbackup/Mobile Portal/587/image.png b/fogbackup/Mobile Portal/587/image.png new file mode 100644 index 0000000..4c2b8b1 Binary files /dev/null and b/fogbackup/Mobile Portal/587/image.png differ diff --git a/fogbackup/Mobile Portal/587/screenshot.png b/fogbackup/Mobile Portal/587/screenshot.png new file mode 100644 index 0000000..8de7656 Binary files /dev/null and b/fogbackup/Mobile Portal/587/screenshot.png differ diff --git a/fogbackup/Mobile Portal/588/screenshot.png b/fogbackup/Mobile Portal/588/screenshot.png new file mode 100644 index 0000000..a2ef677 Binary files /dev/null and b/fogbackup/Mobile Portal/588/screenshot.png differ diff --git a/fogbackup/Mobile Portal/589/screenshot.png b/fogbackup/Mobile Portal/589/screenshot.png new file mode 100644 index 0000000..568de55 Binary files /dev/null and b/fogbackup/Mobile Portal/589/screenshot.png differ diff --git a/fogbackup/Mobile Portal/590/screenshot.png b/fogbackup/Mobile Portal/590/screenshot.png new file mode 100644 index 0000000..2f829f7 Binary files /dev/null and b/fogbackup/Mobile Portal/590/screenshot.png differ diff --git a/fogbackup/Mobile Portal/592/screenshot.png b/fogbackup/Mobile Portal/592/screenshot.png new file mode 100644 index 0000000..d3165c8 Binary files /dev/null and b/fogbackup/Mobile Portal/592/screenshot.png differ diff --git a/fogbackup/Mobile Portal/593/image.png b/fogbackup/Mobile Portal/593/image.png new file mode 100644 index 0000000..d77e5f3 Binary files /dev/null and b/fogbackup/Mobile Portal/593/image.png differ diff --git a/fogbackup/Mobile Portal/593/screenshot.png b/fogbackup/Mobile Portal/593/screenshot.png new file mode 100644 index 0000000..7dc972d Binary files /dev/null and b/fogbackup/Mobile Portal/593/screenshot.png differ diff --git a/fogbackup/Mobile Portal/594/screenshot.png b/fogbackup/Mobile Portal/594/screenshot.png new file mode 100644 index 0000000..a5739e8 Binary files /dev/null and b/fogbackup/Mobile Portal/594/screenshot.png differ diff --git a/fogbackup/Mobile Portal/595/image.png b/fogbackup/Mobile Portal/595/image.png new file mode 100644 index 0000000..5046de5 Binary files /dev/null and b/fogbackup/Mobile Portal/595/image.png differ diff --git a/fogbackup/Mobile Portal/595/screenshot.png b/fogbackup/Mobile Portal/595/screenshot.png new file mode 100644 index 0000000..18d0a80 Binary files /dev/null and b/fogbackup/Mobile Portal/595/screenshot.png differ diff --git a/fogbackup/Mobile Portal/596/image.png b/fogbackup/Mobile Portal/596/image.png new file mode 100644 index 0000000..81619d6 Binary files /dev/null and b/fogbackup/Mobile Portal/596/image.png differ diff --git a/fogbackup/Mobile Portal/597/screenshot.png b/fogbackup/Mobile Portal/597/screenshot.png new file mode 100644 index 0000000..f115892 Binary files /dev/null and b/fogbackup/Mobile Portal/597/screenshot.png differ diff --git a/fogbackup/Mobile Portal/598/image.png b/fogbackup/Mobile Portal/598/image.png new file mode 100644 index 0000000..c7e0fed Binary files /dev/null and b/fogbackup/Mobile Portal/598/image.png differ diff --git a/fogbackup/Mobile Portal/598/screenshot.png b/fogbackup/Mobile Portal/598/screenshot.png new file mode 100644 index 0000000..4efa0c7 Binary files /dev/null and b/fogbackup/Mobile Portal/598/screenshot.png differ diff --git a/fogbackup/Mobile Portal/599/screenshot.png b/fogbackup/Mobile Portal/599/screenshot.png new file mode 100644 index 0000000..e32b189 Binary files /dev/null and b/fogbackup/Mobile Portal/599/screenshot.png differ diff --git a/fogbackup/Mobile Portal/601/screenshot.png b/fogbackup/Mobile Portal/601/screenshot.png new file mode 100644 index 0000000..361ae24 Binary files /dev/null and b/fogbackup/Mobile Portal/601/screenshot.png differ diff --git a/fogbackup/Mobile Portal/602/screenshot.png b/fogbackup/Mobile Portal/602/screenshot.png new file mode 100644 index 0000000..5d00d95 Binary files /dev/null and b/fogbackup/Mobile Portal/602/screenshot.png differ diff --git a/fogbackup/Mobile Portal/603/screenshot.png b/fogbackup/Mobile Portal/603/screenshot.png new file mode 100644 index 0000000..f91256a Binary files /dev/null and b/fogbackup/Mobile Portal/603/screenshot.png differ diff --git a/fogbackup/Mobile Portal/604/image.png b/fogbackup/Mobile Portal/604/image.png new file mode 100644 index 0000000..726bc31 Binary files /dev/null and b/fogbackup/Mobile Portal/604/image.png differ diff --git a/fogbackup/Mobile Portal/604/screenshot.png b/fogbackup/Mobile Portal/604/screenshot.png new file mode 100644 index 0000000..2fe5277 Binary files /dev/null and b/fogbackup/Mobile Portal/604/screenshot.png differ diff --git a/fogbackup/Mobile Portal/606/dataurlimage.png b/fogbackup/Mobile Portal/606/dataurlimage.png new file mode 100644 index 0000000..0db7de3 Binary files /dev/null and b/fogbackup/Mobile Portal/606/dataurlimage.png differ diff --git a/fogbackup/Mobile Portal/606/screenshot.png b/fogbackup/Mobile Portal/606/screenshot.png new file mode 100644 index 0000000..b098e9e Binary files /dev/null and b/fogbackup/Mobile Portal/606/screenshot.png differ diff --git a/fogbackup/Mobile Portal/607/image.png b/fogbackup/Mobile Portal/607/image.png new file mode 100644 index 0000000..b71588d Binary files /dev/null and b/fogbackup/Mobile Portal/607/image.png differ diff --git a/fogbackup/Mobile Portal/607/screenshot.png b/fogbackup/Mobile Portal/607/screenshot.png new file mode 100644 index 0000000..2581dfd Binary files /dev/null and b/fogbackup/Mobile Portal/607/screenshot.png differ diff --git a/fogbackup/Mobile Portal/608/screenshot.png b/fogbackup/Mobile Portal/608/screenshot.png new file mode 100644 index 0000000..7ecc162 Binary files /dev/null and b/fogbackup/Mobile Portal/608/screenshot.png differ diff --git a/fogbackup/Mobile Portal/610/screenshot.png b/fogbackup/Mobile Portal/610/screenshot.png new file mode 100644 index 0000000..c1ead9f Binary files /dev/null and b/fogbackup/Mobile Portal/610/screenshot.png differ diff --git a/fogbackup/Mobile Portal/611/image.png b/fogbackup/Mobile Portal/611/image.png new file mode 100644 index 0000000..c505fdf Binary files /dev/null and b/fogbackup/Mobile Portal/611/image.png differ diff --git a/fogbackup/Mobile Portal/612/S23 - S26.xlsx b/fogbackup/Mobile Portal/612/S23 - S26.xlsx new file mode 100644 index 0000000..d639442 Binary files /dev/null and b/fogbackup/Mobile Portal/612/S23 - S26.xlsx differ diff --git a/fogbackup/Mobile Portal/615/image.png b/fogbackup/Mobile Portal/615/image.png new file mode 100644 index 0000000..83f99e6 Binary files /dev/null and b/fogbackup/Mobile Portal/615/image.png differ diff --git a/fogbackup/Mobile Portal/617/S23 - S26.xlsx b/fogbackup/Mobile Portal/617/S23 - S26.xlsx new file mode 100644 index 0000000..d639442 Binary files /dev/null and b/fogbackup/Mobile Portal/617/S23 - S26.xlsx differ diff --git a/fogbackup/Mobile Portal/620/image.png b/fogbackup/Mobile Portal/620/image.png new file mode 100644 index 0000000..25c137d Binary files /dev/null and b/fogbackup/Mobile Portal/620/image.png differ diff --git a/fogbackup/Mobile Portal/621/image.png b/fogbackup/Mobile Portal/621/image.png new file mode 100644 index 0000000..a5e32d2 Binary files /dev/null and b/fogbackup/Mobile Portal/621/image.png differ diff --git a/fogbackup/Mobile Portal/622/image.png b/fogbackup/Mobile Portal/622/image.png new file mode 100644 index 0000000..845cda2 Binary files /dev/null and b/fogbackup/Mobile Portal/622/image.png differ diff --git a/fogbackup/Mobile Portal/622/screenshot.png b/fogbackup/Mobile Portal/622/screenshot.png new file mode 100644 index 0000000..f776303 Binary files /dev/null and b/fogbackup/Mobile Portal/622/screenshot.png differ diff --git a/fogbackup/Mobile Portal/623/screenshot.png b/fogbackup/Mobile Portal/623/screenshot.png new file mode 100644 index 0000000..647db4a Binary files /dev/null and b/fogbackup/Mobile Portal/623/screenshot.png differ diff --git a/fogbackup/Mobile Portal/625/image.png b/fogbackup/Mobile Portal/625/image.png new file mode 100644 index 0000000..fdb3c94 Binary files /dev/null and b/fogbackup/Mobile Portal/625/image.png differ diff --git a/fogbackup/Mobile Portal/625/screenshot.png b/fogbackup/Mobile Portal/625/screenshot.png new file mode 100644 index 0000000..acbdb02 Binary files /dev/null and b/fogbackup/Mobile Portal/625/screenshot.png differ diff --git a/fogbackup/Mobile Portal/627/screenshot.png b/fogbackup/Mobile Portal/627/screenshot.png new file mode 100644 index 0000000..c2c2e54 Binary files /dev/null and b/fogbackup/Mobile Portal/627/screenshot.png differ diff --git a/fogbackup/Mobile Portal/628/image.png b/fogbackup/Mobile Portal/628/image.png new file mode 100644 index 0000000..90f334d Binary files /dev/null and b/fogbackup/Mobile Portal/628/image.png differ diff --git a/fogbackup/Mobile Portal/628/screenshot.png b/fogbackup/Mobile Portal/628/screenshot.png new file mode 100644 index 0000000..a215ff6 Binary files /dev/null and b/fogbackup/Mobile Portal/628/screenshot.png differ diff --git a/fogbackup/Mobile Portal/629/image.png b/fogbackup/Mobile Portal/629/image.png new file mode 100644 index 0000000..2b1e569 Binary files /dev/null and b/fogbackup/Mobile Portal/629/image.png differ diff --git a/fogbackup/Mobile Portal/629/screenshot.png b/fogbackup/Mobile Portal/629/screenshot.png new file mode 100644 index 0000000..9a0d7da Binary files /dev/null and b/fogbackup/Mobile Portal/629/screenshot.png differ diff --git a/fogbackup/Mobile Portal/630/image.png b/fogbackup/Mobile Portal/630/image.png new file mode 100644 index 0000000..98230c0 Binary files /dev/null and b/fogbackup/Mobile Portal/630/image.png differ diff --git a/fogbackup/Mobile Portal/630/screenshot.png b/fogbackup/Mobile Portal/630/screenshot.png new file mode 100644 index 0000000..947c952 Binary files /dev/null and b/fogbackup/Mobile Portal/630/screenshot.png differ diff --git a/fogbackup/Mobile Portal/631/image.png b/fogbackup/Mobile Portal/631/image.png new file mode 100644 index 0000000..21d769b Binary files /dev/null and b/fogbackup/Mobile Portal/631/image.png differ diff --git a/fogbackup/Mobile Portal/632/image.png b/fogbackup/Mobile Portal/632/image.png new file mode 100644 index 0000000..dcd7459 Binary files /dev/null and b/fogbackup/Mobile Portal/632/image.png differ diff --git a/fogbackup/Mobile Portal/632/screenshot.png b/fogbackup/Mobile Portal/632/screenshot.png new file mode 100644 index 0000000..11023f5 Binary files /dev/null and b/fogbackup/Mobile Portal/632/screenshot.png differ diff --git a/fogbackup/Mobile Portal/634/screenshot.png b/fogbackup/Mobile Portal/634/screenshot.png new file mode 100644 index 0000000..4f3f281 Binary files /dev/null and b/fogbackup/Mobile Portal/634/screenshot.png differ diff --git a/fogbackup/Mobile Portal/637/screenshot.png b/fogbackup/Mobile Portal/637/screenshot.png new file mode 100644 index 0000000..d6671a8 Binary files /dev/null and b/fogbackup/Mobile Portal/637/screenshot.png differ diff --git a/fogbackup/Mobile Portal/638/image.png b/fogbackup/Mobile Portal/638/image.png new file mode 100644 index 0000000..75e17e5 Binary files /dev/null and b/fogbackup/Mobile Portal/638/image.png differ diff --git a/fogbackup/Mobile Portal/640/screenshot.png b/fogbackup/Mobile Portal/640/screenshot.png new file mode 100644 index 0000000..0b84e11 Binary files /dev/null and b/fogbackup/Mobile Portal/640/screenshot.png differ diff --git a/fogbackup/Mobile Portal/641/image.png b/fogbackup/Mobile Portal/641/image.png new file mode 100644 index 0000000..1298105 Binary files /dev/null and b/fogbackup/Mobile Portal/641/image.png differ diff --git a/fogbackup/Mobile Portal/642/image.png b/fogbackup/Mobile Portal/642/image.png new file mode 100644 index 0000000..1d6ed89 Binary files /dev/null and b/fogbackup/Mobile Portal/642/image.png differ diff --git a/fogbackup/Mobile Portal/643/screenshot.png b/fogbackup/Mobile Portal/643/screenshot.png new file mode 100644 index 0000000..5d2dab0 Binary files /dev/null and b/fogbackup/Mobile Portal/643/screenshot.png differ diff --git a/fogbackup/Mobile Portal/644/screenshot.png b/fogbackup/Mobile Portal/644/screenshot.png new file mode 100644 index 0000000..6100962 Binary files /dev/null and b/fogbackup/Mobile Portal/644/screenshot.png differ diff --git a/fogbackup/Mobile Portal/645/screenshot.png b/fogbackup/Mobile Portal/645/screenshot.png new file mode 100644 index 0000000..2d5d6d5 Binary files /dev/null and b/fogbackup/Mobile Portal/645/screenshot.png differ diff --git a/fogbackup/Mobile Portal/646/screenshot.png b/fogbackup/Mobile Portal/646/screenshot.png new file mode 100644 index 0000000..238d680 Binary files /dev/null and b/fogbackup/Mobile Portal/646/screenshot.png differ diff --git a/fogbackup/Mobile Portal/647/image.png b/fogbackup/Mobile Portal/647/image.png new file mode 100644 index 0000000..167a553 Binary files /dev/null and b/fogbackup/Mobile Portal/647/image.png differ diff --git a/fogbackup/Mobile Portal/647/screenshot.png b/fogbackup/Mobile Portal/647/screenshot.png new file mode 100644 index 0000000..d1f5127 Binary files /dev/null and b/fogbackup/Mobile Portal/647/screenshot.png differ diff --git a/fogbackup/Mobile Portal/648/image.png b/fogbackup/Mobile Portal/648/image.png new file mode 100644 index 0000000..184f0a9 Binary files /dev/null and b/fogbackup/Mobile Portal/648/image.png differ diff --git a/fogbackup/Mobile Portal/648/screenshot.png b/fogbackup/Mobile Portal/648/screenshot.png new file mode 100644 index 0000000..05fe85e Binary files /dev/null and b/fogbackup/Mobile Portal/648/screenshot.png differ diff --git a/fogbackup/Mobile Portal/649/screenshot.png b/fogbackup/Mobile Portal/649/screenshot.png new file mode 100644 index 0000000..b8be8b5 Binary files /dev/null and b/fogbackup/Mobile Portal/649/screenshot.png differ diff --git a/fogbackup/Mobile Portal/652/screenshot.png b/fogbackup/Mobile Portal/652/screenshot.png new file mode 100644 index 0000000..f3011aa Binary files /dev/null and b/fogbackup/Mobile Portal/652/screenshot.png differ diff --git a/fogbackup/Mobile Portal/653/screenshot.png b/fogbackup/Mobile Portal/653/screenshot.png new file mode 100644 index 0000000..c41d952 Binary files /dev/null and b/fogbackup/Mobile Portal/653/screenshot.png differ diff --git a/fogbackup/Mobile Portal/655/image.png b/fogbackup/Mobile Portal/655/image.png new file mode 100644 index 0000000..1387aea Binary files /dev/null and b/fogbackup/Mobile Portal/655/image.png differ diff --git a/fogbackup/Mobile Portal/656/image.png b/fogbackup/Mobile Portal/656/image.png new file mode 100644 index 0000000..4ed9fea Binary files /dev/null and b/fogbackup/Mobile Portal/656/image.png differ diff --git a/fogbackup/Mobile Portal/657/image.png b/fogbackup/Mobile Portal/657/image.png new file mode 100644 index 0000000..64c54a1 Binary files /dev/null and b/fogbackup/Mobile Portal/657/image.png differ diff --git a/fogbackup/Mobile Portal/657/screenshot.png b/fogbackup/Mobile Portal/657/screenshot.png new file mode 100644 index 0000000..0261ef8 Binary files /dev/null and b/fogbackup/Mobile Portal/657/screenshot.png differ diff --git a/fogbackup/Mobile Portal/660/image.png b/fogbackup/Mobile Portal/660/image.png new file mode 100644 index 0000000..0eda406 Binary files /dev/null and b/fogbackup/Mobile Portal/660/image.png differ diff --git a/fogbackup/Mobile Portal/660/screenshot.png b/fogbackup/Mobile Portal/660/screenshot.png new file mode 100644 index 0000000..77bf58a Binary files /dev/null and b/fogbackup/Mobile Portal/660/screenshot.png differ diff --git a/fogbackup/Mobile Portal/661/image.png b/fogbackup/Mobile Portal/661/image.png new file mode 100644 index 0000000..71c8c25 Binary files /dev/null and b/fogbackup/Mobile Portal/661/image.png differ diff --git a/fogbackup/Mobile Portal/662/image.png b/fogbackup/Mobile Portal/662/image.png new file mode 100644 index 0000000..9d4fb90 Binary files /dev/null and b/fogbackup/Mobile Portal/662/image.png differ diff --git a/fogbackup/Mobile Portal/663/screenshot.png b/fogbackup/Mobile Portal/663/screenshot.png new file mode 100644 index 0000000..ba2eef8 Binary files /dev/null and b/fogbackup/Mobile Portal/663/screenshot.png differ diff --git a/fogbackup/Mobile Portal/664/screenshot.png b/fogbackup/Mobile Portal/664/screenshot.png new file mode 100644 index 0000000..e6ea5f3 Binary files /dev/null and b/fogbackup/Mobile Portal/664/screenshot.png differ diff --git a/fogbackup/Mobile Portal/678/Pasted image from 19062018, 141658.png b/fogbackup/Mobile Portal/678/Pasted image from 19062018, 141658.png new file mode 100644 index 0000000..7a064b0 Binary files /dev/null and b/fogbackup/Mobile Portal/678/Pasted image from 19062018, 141658.png differ diff --git a/fogbackup/Mobile Portal/679/screenshot.png b/fogbackup/Mobile Portal/679/screenshot.png new file mode 100644 index 0000000..0c855e4 Binary files /dev/null and b/fogbackup/Mobile Portal/679/screenshot.png differ diff --git a/fogbackup/Mobile Portal/680/Pasted image from 22102018, 175650.png b/fogbackup/Mobile Portal/680/Pasted image from 22102018, 175650.png new file mode 100644 index 0000000..b2f2614 Binary files /dev/null and b/fogbackup/Mobile Portal/680/Pasted image from 22102018, 175650.png differ diff --git a/fogbackup/Mobile Portal/680/screenshot.png b/fogbackup/Mobile Portal/680/screenshot.png new file mode 100644 index 0000000..413ac28 Binary files /dev/null and b/fogbackup/Mobile Portal/680/screenshot.png differ diff --git a/fogbackup/Mobile Portal/681/image.png b/fogbackup/Mobile Portal/681/image.png new file mode 100644 index 0000000..c444b16 Binary files /dev/null and b/fogbackup/Mobile Portal/681/image.png differ diff --git a/fogbackup/Mobile Portal/682/Pasted image from 03012019, 171748.png b/fogbackup/Mobile Portal/682/Pasted image from 03012019, 171748.png new file mode 100644 index 0000000..34761c2 Binary files /dev/null and b/fogbackup/Mobile Portal/682/Pasted image from 03012019, 171748.png differ diff --git a/fogbackup/Mobile Portal/682/image.png b/fogbackup/Mobile Portal/682/image.png new file mode 100644 index 0000000..25660b9 Binary files /dev/null and b/fogbackup/Mobile Portal/682/image.png differ diff --git a/fogbackup/Mobile Portal/683/Pasted image from 26122018, 175434.png b/fogbackup/Mobile Portal/683/Pasted image from 26122018, 175434.png new file mode 100644 index 0000000..b67d460 Binary files /dev/null and b/fogbackup/Mobile Portal/683/Pasted image from 26122018, 175434.png differ diff --git a/fogbackup/Mobile Portal/683/Pasted image from 30122018, 113028.png b/fogbackup/Mobile Portal/683/Pasted image from 30122018, 113028.png new file mode 100644 index 0000000..57d9301 Binary files /dev/null and b/fogbackup/Mobile Portal/683/Pasted image from 30122018, 113028.png differ diff --git a/fogbackup/Mobile Portal/683/screenshot.png b/fogbackup/Mobile Portal/683/screenshot.png new file mode 100644 index 0000000..3ad1ee2 Binary files /dev/null and b/fogbackup/Mobile Portal/683/screenshot.png differ diff --git a/fogbackup/Mobile Portal/684/screenshot.png b/fogbackup/Mobile Portal/684/screenshot.png new file mode 100644 index 0000000..6f5d022 Binary files /dev/null and b/fogbackup/Mobile Portal/684/screenshot.png differ diff --git a/fogbackup/Mobile Portal/685/image.png b/fogbackup/Mobile Portal/685/image.png new file mode 100644 index 0000000..72252ca Binary files /dev/null and b/fogbackup/Mobile Portal/685/image.png differ diff --git a/fogbackup/Mobile Portal/686/image.png b/fogbackup/Mobile Portal/686/image.png new file mode 100644 index 0000000..e8d90d0 Binary files /dev/null and b/fogbackup/Mobile Portal/686/image.png differ diff --git a/fogbackup/Mobile Portal/686/screenshot.png b/fogbackup/Mobile Portal/686/screenshot.png new file mode 100644 index 0000000..704d563 Binary files /dev/null and b/fogbackup/Mobile Portal/686/screenshot.png differ diff --git a/fogbackup/Mobile Portal/687/screenshot.png b/fogbackup/Mobile Portal/687/screenshot.png new file mode 100644 index 0000000..6306394 Binary files /dev/null and b/fogbackup/Mobile Portal/687/screenshot.png differ diff --git a/fogbackup/Mobile Portal/688/image.png b/fogbackup/Mobile Portal/688/image.png new file mode 100644 index 0000000..11f2b8a Binary files /dev/null and b/fogbackup/Mobile Portal/688/image.png differ diff --git a/fogbackup/Mobile Portal/690/screenshot.png b/fogbackup/Mobile Portal/690/screenshot.png new file mode 100644 index 0000000..adfc8fd Binary files /dev/null and b/fogbackup/Mobile Portal/690/screenshot.png differ diff --git a/fogbackup/Mobile Portal/691/dataurlimage.png b/fogbackup/Mobile Portal/691/dataurlimage.png new file mode 100644 index 0000000..bf0962e Binary files /dev/null and b/fogbackup/Mobile Portal/691/dataurlimage.png differ diff --git a/fogbackup/Mobile Portal/691/screenshot.png b/fogbackup/Mobile Portal/691/screenshot.png new file mode 100644 index 0000000..8a72a34 Binary files /dev/null and b/fogbackup/Mobile Portal/691/screenshot.png differ diff --git a/fogbackup/Mobile Portal/694/Pasted image from 26012019, 110759.png b/fogbackup/Mobile Portal/694/Pasted image from 26012019, 110759.png new file mode 100644 index 0000000..88e24f1 Binary files /dev/null and b/fogbackup/Mobile Portal/694/Pasted image from 26012019, 110759.png differ diff --git a/fogbackup/Mobile Portal/696/Pasted image from 21012019, 100551.png b/fogbackup/Mobile Portal/696/Pasted image from 21012019, 100551.png new file mode 100644 index 0000000..db1369c Binary files /dev/null and b/fogbackup/Mobile Portal/696/Pasted image from 21012019, 100551.png differ diff --git a/fogbackup/Mobile Portal/696/Pasted image from 21012019, 231330.png b/fogbackup/Mobile Portal/696/Pasted image from 21012019, 231330.png new file mode 100644 index 0000000..62c066f Binary files /dev/null and b/fogbackup/Mobile Portal/696/Pasted image from 21012019, 231330.png differ diff --git a/fogbackup/Mobile Portal/696/screenshot.png b/fogbackup/Mobile Portal/696/screenshot.png new file mode 100644 index 0000000..a1a43c8 Binary files /dev/null and b/fogbackup/Mobile Portal/696/screenshot.png differ diff --git a/fogbackup/Mobile Portal/697/screenshot.png b/fogbackup/Mobile Portal/697/screenshot.png new file mode 100644 index 0000000..e7cc427 Binary files /dev/null and b/fogbackup/Mobile Portal/697/screenshot.png differ diff --git a/fogbackup/Mobile Portal/698/screenshot.png b/fogbackup/Mobile Portal/698/screenshot.png new file mode 100644 index 0000000..d8464da Binary files /dev/null and b/fogbackup/Mobile Portal/698/screenshot.png differ diff --git a/fogbackup/Mobile Portal/700/Pasted image from 26012019, 110021.png b/fogbackup/Mobile Portal/700/Pasted image from 26012019, 110021.png new file mode 100644 index 0000000..914a125 Binary files /dev/null and b/fogbackup/Mobile Portal/700/Pasted image from 26012019, 110021.png differ diff --git a/fogbackup/Mobile Portal/700/Pasted image from 26012019, 110031.png b/fogbackup/Mobile Portal/700/Pasted image from 26012019, 110031.png new file mode 100644 index 0000000..3ea659d Binary files /dev/null and b/fogbackup/Mobile Portal/700/Pasted image from 26012019, 110031.png differ diff --git a/fogbackup/Mobile Portal/701/Pasted image from 27012019, 090116.png b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 090116.png new file mode 100644 index 0000000..590eda2 Binary files /dev/null and b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 090116.png differ diff --git a/fogbackup/Mobile Portal/701/Pasted image from 27012019, 090221.png b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 090221.png new file mode 100644 index 0000000..885e3f3 Binary files /dev/null and b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 090221.png differ diff --git a/fogbackup/Mobile Portal/701/Pasted image from 27012019, 090723.png b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 090723.png new file mode 100644 index 0000000..646e31a Binary files /dev/null and b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 090723.png differ diff --git a/fogbackup/Mobile Portal/701/Pasted image from 27012019, 110351.png b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 110351.png new file mode 100644 index 0000000..f7085f3 Binary files /dev/null and b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 110351.png differ diff --git a/fogbackup/Mobile Portal/701/Pasted image from 27012019, 110544.png b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 110544.png new file mode 100644 index 0000000..fcfaeaa Binary files /dev/null and b/fogbackup/Mobile Portal/701/Pasted image from 27012019, 110544.png differ diff --git a/fogbackup/Mobile Portal/706/Pasted image from 15022019, 154335.png b/fogbackup/Mobile Portal/706/Pasted image from 15022019, 154335.png new file mode 100644 index 0000000..64648b8 Binary files /dev/null and b/fogbackup/Mobile Portal/706/Pasted image from 15022019, 154335.png differ diff --git a/fogbackup/Mobile Portal/707/screenshot.png b/fogbackup/Mobile Portal/707/screenshot.png new file mode 100644 index 0000000..63b0265 Binary files /dev/null and b/fogbackup/Mobile Portal/707/screenshot.png differ diff --git a/fogbackup/Mobile Portal/708/Pasted image from 21022019, 145737.png b/fogbackup/Mobile Portal/708/Pasted image from 21022019, 145737.png new file mode 100644 index 0000000..ce56154 Binary files /dev/null and b/fogbackup/Mobile Portal/708/Pasted image from 21022019, 145737.png differ diff --git a/fogbackup/Mobile Portal/708/screenshot.png b/fogbackup/Mobile Portal/708/screenshot.png new file mode 100644 index 0000000..b1e3186 Binary files /dev/null and b/fogbackup/Mobile Portal/708/screenshot.png differ diff --git a/fogbackup/Mobile Portal/709/Pasted image from 20072019, 071721.png b/fogbackup/Mobile Portal/709/Pasted image from 20072019, 071721.png new file mode 100644 index 0000000..37dafb5 Binary files /dev/null and b/fogbackup/Mobile Portal/709/Pasted image from 20072019, 071721.png differ diff --git a/fogbackup/Mobile Portal/709/Pasted image from 24022019, 185057.png b/fogbackup/Mobile Portal/709/Pasted image from 24022019, 185057.png new file mode 100644 index 0000000..78d422a Binary files /dev/null and b/fogbackup/Mobile Portal/709/Pasted image from 24022019, 185057.png differ diff --git a/fogbackup/Mobile Portal/709/Pasted image from 24022019, 195027.png b/fogbackup/Mobile Portal/709/Pasted image from 24022019, 195027.png new file mode 100644 index 0000000..961896a Binary files /dev/null and b/fogbackup/Mobile Portal/709/Pasted image from 24022019, 195027.png differ diff --git a/fogbackup/Mobile Portal/709/Pasted image from 25022019, 081202.png b/fogbackup/Mobile Portal/709/Pasted image from 25022019, 081202.png new file mode 100644 index 0000000..ab3b389 Binary files /dev/null and b/fogbackup/Mobile Portal/709/Pasted image from 25022019, 081202.png differ diff --git a/fogbackup/Mobile Portal/709/Pasted image from 26072019, 075338.png b/fogbackup/Mobile Portal/709/Pasted image from 26072019, 075338.png new file mode 100644 index 0000000..68f1060 Binary files /dev/null and b/fogbackup/Mobile Portal/709/Pasted image from 26072019, 075338.png differ diff --git a/fogbackup/Mobile Portal/709/Pasted image from 28022019, 081633.png b/fogbackup/Mobile Portal/709/Pasted image from 28022019, 081633.png new file mode 100644 index 0000000..008ea01 Binary files /dev/null and b/fogbackup/Mobile Portal/709/Pasted image from 28022019, 081633.png differ diff --git a/fogbackup/Mobile Portal/709/image.png b/fogbackup/Mobile Portal/709/image.png new file mode 100644 index 0000000..67915dd Binary files /dev/null and b/fogbackup/Mobile Portal/709/image.png differ diff --git a/fogbackup/Mobile Portal/710/Pasted image from 25022019, 081542.png b/fogbackup/Mobile Portal/710/Pasted image from 25022019, 081542.png new file mode 100644 index 0000000..ab3b389 Binary files /dev/null and b/fogbackup/Mobile Portal/710/Pasted image from 25022019, 081542.png differ diff --git a/fogbackup/Mobile Portal/710/Pasted image from 25022019, 081609.png b/fogbackup/Mobile Portal/710/Pasted image from 25022019, 081609.png new file mode 100644 index 0000000..1677377 Binary files /dev/null and b/fogbackup/Mobile Portal/710/Pasted image from 25022019, 081609.png differ diff --git a/fogbackup/Mobile Portal/710/Pasted image from 25022019, 082012.png b/fogbackup/Mobile Portal/710/Pasted image from 25022019, 082012.png new file mode 100644 index 0000000..62da2c4 Binary files /dev/null and b/fogbackup/Mobile Portal/710/Pasted image from 25022019, 082012.png differ diff --git a/fogbackup/Mobile Portal/710/Pasted image from 28092019, 100953.png b/fogbackup/Mobile Portal/710/Pasted image from 28092019, 100953.png new file mode 100644 index 0000000..8e641f7 Binary files /dev/null and b/fogbackup/Mobile Portal/710/Pasted image from 28092019, 100953.png differ diff --git a/fogbackup/Mobile Portal/710/Pasted image from 28092019, 100954.png b/fogbackup/Mobile Portal/710/Pasted image from 28092019, 100954.png new file mode 100644 index 0000000..8e641f7 Binary files /dev/null and b/fogbackup/Mobile Portal/710/Pasted image from 28092019, 100954.png differ diff --git a/fogbackup/Mobile Portal/710/image.png b/fogbackup/Mobile Portal/710/image.png new file mode 100644 index 0000000..4076940 Binary files /dev/null and b/fogbackup/Mobile Portal/710/image.png differ diff --git a/fogbackup/Mobile Portal/711/Pasted image from 02052019, 102638.png b/fogbackup/Mobile Portal/711/Pasted image from 02052019, 102638.png new file mode 100644 index 0000000..28330b8 Binary files /dev/null and b/fogbackup/Mobile Portal/711/Pasted image from 02052019, 102638.png differ diff --git a/fogbackup/Mobile Portal/711/screenshot.png b/fogbackup/Mobile Portal/711/screenshot.png new file mode 100644 index 0000000..a7fdd79 Binary files /dev/null and b/fogbackup/Mobile Portal/711/screenshot.png differ diff --git a/fogbackup/Mobile Portal/712/Pasted image from 18032019, 084547.png b/fogbackup/Mobile Portal/712/Pasted image from 18032019, 084547.png new file mode 100644 index 0000000..34ed30f Binary files /dev/null and b/fogbackup/Mobile Portal/712/Pasted image from 18032019, 084547.png differ diff --git a/fogbackup/Mobile Portal/712/Pasted image from 24032019, 181043.png b/fogbackup/Mobile Portal/712/Pasted image from 24032019, 181043.png new file mode 100644 index 0000000..7e6ed72 Binary files /dev/null and b/fogbackup/Mobile Portal/712/Pasted image from 24032019, 181043.png differ diff --git a/fogbackup/Mobile Portal/712/Pasted image from 24032019, 190454.png b/fogbackup/Mobile Portal/712/Pasted image from 24032019, 190454.png new file mode 100644 index 0000000..336ef76 Binary files /dev/null and b/fogbackup/Mobile Portal/712/Pasted image from 24032019, 190454.png differ diff --git a/fogbackup/Mobile Portal/712/Pasted image from 24032019, 190634.png b/fogbackup/Mobile Portal/712/Pasted image from 24032019, 190634.png new file mode 100644 index 0000000..1a75988 Binary files /dev/null and b/fogbackup/Mobile Portal/712/Pasted image from 24032019, 190634.png differ diff --git a/fogbackup/Mobile Portal/712/screenshot.png b/fogbackup/Mobile Portal/712/screenshot.png new file mode 100644 index 0000000..04d23c1 Binary files /dev/null and b/fogbackup/Mobile Portal/712/screenshot.png differ diff --git a/fogbackup/Mobile Portal/713/Pasted image from 21032019, 143632.png b/fogbackup/Mobile Portal/713/Pasted image from 21032019, 143632.png new file mode 100644 index 0000000..1e4dc73 Binary files /dev/null and b/fogbackup/Mobile Portal/713/Pasted image from 21032019, 143632.png differ diff --git a/fogbackup/Mobile Portal/713/image.png b/fogbackup/Mobile Portal/713/image.png new file mode 100644 index 0000000..f9bf082 Binary files /dev/null and b/fogbackup/Mobile Portal/713/image.png differ diff --git a/fogbackup/Mobile Portal/713/screenshot.png b/fogbackup/Mobile Portal/713/screenshot.png new file mode 100644 index 0000000..165fe19 Binary files /dev/null and b/fogbackup/Mobile Portal/713/screenshot.png differ diff --git a/fogbackup/Mobile Portal/714/Pasted image from 26032019, 162752.png b/fogbackup/Mobile Portal/714/Pasted image from 26032019, 162752.png new file mode 100644 index 0000000..94913fc Binary files /dev/null and b/fogbackup/Mobile Portal/714/Pasted image from 26032019, 162752.png differ diff --git a/fogbackup/Mobile Portal/714/screenshot.png b/fogbackup/Mobile Portal/714/screenshot.png new file mode 100644 index 0000000..3de8851 Binary files /dev/null and b/fogbackup/Mobile Portal/714/screenshot.png differ diff --git a/fogbackup/Mobile Portal/715/Pasted image from 28032019, 102707.png b/fogbackup/Mobile Portal/715/Pasted image from 28032019, 102707.png new file mode 100644 index 0000000..c017e4d Binary files /dev/null and b/fogbackup/Mobile Portal/715/Pasted image from 28032019, 102707.png differ diff --git a/fogbackup/Mobile Portal/715/screenshot.png b/fogbackup/Mobile Portal/715/screenshot.png new file mode 100644 index 0000000..95ada9e Binary files /dev/null and b/fogbackup/Mobile Portal/715/screenshot.png differ diff --git a/fogbackup/Mobile Portal/716/screenshot.png b/fogbackup/Mobile Portal/716/screenshot.png new file mode 100644 index 0000000..e314d53 Binary files /dev/null and b/fogbackup/Mobile Portal/716/screenshot.png differ diff --git a/fogbackup/Mobile Portal/717/Pasted image from 04042019, 161843.png b/fogbackup/Mobile Portal/717/Pasted image from 04042019, 161843.png new file mode 100644 index 0000000..fa173fe Binary files /dev/null and b/fogbackup/Mobile Portal/717/Pasted image from 04042019, 161843.png differ diff --git a/fogbackup/Mobile Portal/718/screenshot.png b/fogbackup/Mobile Portal/718/screenshot.png new file mode 100644 index 0000000..fed451c Binary files /dev/null and b/fogbackup/Mobile Portal/718/screenshot.png differ diff --git a/fogbackup/Mobile Portal/719/screenshot.png b/fogbackup/Mobile Portal/719/screenshot.png new file mode 100644 index 0000000..78c461e Binary files /dev/null and b/fogbackup/Mobile Portal/719/screenshot.png differ diff --git a/fogbackup/Mobile Portal/720/screenshot.png b/fogbackup/Mobile Portal/720/screenshot.png new file mode 100644 index 0000000..3c16e43 Binary files /dev/null and b/fogbackup/Mobile Portal/720/screenshot.png differ diff --git a/fogbackup/Mobile Portal/721/Pasted image from 25082019, 191100.png b/fogbackup/Mobile Portal/721/Pasted image from 25082019, 191100.png new file mode 100644 index 0000000..d1eb634 Binary files /dev/null and b/fogbackup/Mobile Portal/721/Pasted image from 25082019, 191100.png differ diff --git a/fogbackup/Mobile Portal/722/Pasted image from 27062019, 100210.png b/fogbackup/Mobile Portal/722/Pasted image from 27062019, 100210.png new file mode 100644 index 0000000..9864235 Binary files /dev/null and b/fogbackup/Mobile Portal/722/Pasted image from 27062019, 100210.png differ diff --git a/fogbackup/Mobile Portal/723/Pasted image from 11072019, 183712.png b/fogbackup/Mobile Portal/723/Pasted image from 11072019, 183712.png new file mode 100644 index 0000000..c00241c Binary files /dev/null and b/fogbackup/Mobile Portal/723/Pasted image from 11072019, 183712.png differ diff --git a/fogbackup/Mobile Portal/723/screenshot.png b/fogbackup/Mobile Portal/723/screenshot.png new file mode 100644 index 0000000..a211578 Binary files /dev/null and b/fogbackup/Mobile Portal/723/screenshot.png differ diff --git a/fogbackup/Mobile Portal/724/screenshot.png b/fogbackup/Mobile Portal/724/screenshot.png new file mode 100644 index 0000000..88e5b69 Binary files /dev/null and b/fogbackup/Mobile Portal/724/screenshot.png differ diff --git a/fogbackup/Mobile Portal/725/screenshot.png b/fogbackup/Mobile Portal/725/screenshot.png new file mode 100644 index 0000000..e7b5f79 Binary files /dev/null and b/fogbackup/Mobile Portal/725/screenshot.png differ diff --git a/fogbackup/Mobile Portal/727/Pasted image from 07102019, 151047.png b/fogbackup/Mobile Portal/727/Pasted image from 07102019, 151047.png new file mode 100644 index 0000000..3572096 Binary files /dev/null and b/fogbackup/Mobile Portal/727/Pasted image from 07102019, 151047.png differ diff --git a/fogbackup/Mobile Portal/728/screenshot.png b/fogbackup/Mobile Portal/728/screenshot.png new file mode 100644 index 0000000..58380a5 Binary files /dev/null and b/fogbackup/Mobile Portal/728/screenshot.png differ diff --git a/fogbackup/Mobile Portal/729/Pasted image from 06112019, 145900.png b/fogbackup/Mobile Portal/729/Pasted image from 06112019, 145900.png new file mode 100644 index 0000000..bff84e2 Binary files /dev/null and b/fogbackup/Mobile Portal/729/Pasted image from 06112019, 145900.png differ diff --git a/fogbackup/Mobile Portal/730/screenshot.png b/fogbackup/Mobile Portal/730/screenshot.png new file mode 100644 index 0000000..d2c8b6c Binary files /dev/null and b/fogbackup/Mobile Portal/730/screenshot.png differ diff --git a/fogbackup/Mobile Portal/732/Pasted image from 07012021, 081201.png b/fogbackup/Mobile Portal/732/Pasted image from 07012021, 081201.png new file mode 100644 index 0000000..63f3aeb Binary files /dev/null and b/fogbackup/Mobile Portal/732/Pasted image from 07012021, 081201.png differ diff --git a/fogbackup/Mobile Portal/732/Pasted image from 17012021, 144551.png b/fogbackup/Mobile Portal/732/Pasted image from 17012021, 144551.png new file mode 100644 index 0000000..db15d1d Binary files /dev/null and b/fogbackup/Mobile Portal/732/Pasted image from 17012021, 144551.png differ diff --git a/fogbackup/Mobile Portal/733/Pasted image from 07112021, 213807.png b/fogbackup/Mobile Portal/733/Pasted image from 07112021, 213807.png new file mode 100644 index 0000000..9db41ff Binary files /dev/null and b/fogbackup/Mobile Portal/733/Pasted image from 07112021, 213807.png differ diff --git a/fogbackup/Mobile Portal/733/Pasted image from 19072021, 151021.png b/fogbackup/Mobile Portal/733/Pasted image from 19072021, 151021.png new file mode 100644 index 0000000..dac7283 Binary files /dev/null and b/fogbackup/Mobile Portal/733/Pasted image from 19072021, 151021.png differ diff --git a/fogbackup/Mobile Portal/733/Pasted image from 19072021, 151253.png b/fogbackup/Mobile Portal/733/Pasted image from 19072021, 151253.png new file mode 100644 index 0000000..f674f13 Binary files /dev/null and b/fogbackup/Mobile Portal/733/Pasted image from 19072021, 151253.png differ diff --git a/fogbackup/Mobile Portal/733/Pasted image from 19072021, 230015.png b/fogbackup/Mobile Portal/733/Pasted image from 19072021, 230015.png new file mode 100644 index 0000000..88e6bb2 Binary files /dev/null and b/fogbackup/Mobile Portal/733/Pasted image from 19072021, 230015.png differ diff --git a/fogbackup/Mobile Portal/733/Pasted image from 22082021, 074653.png b/fogbackup/Mobile Portal/733/Pasted image from 22082021, 074653.png new file mode 100644 index 0000000..86ab2eb Binary files /dev/null and b/fogbackup/Mobile Portal/733/Pasted image from 22082021, 074653.png differ diff --git a/fogbackup/Mobile Portal/734/Pasted image from 22112021, 082537.png b/fogbackup/Mobile Portal/734/Pasted image from 22112021, 082537.png new file mode 100644 index 0000000..379ecc3 Binary files /dev/null and b/fogbackup/Mobile Portal/734/Pasted image from 22112021, 082537.png differ diff --git a/fogbackup/Mobile Portal/734/Pasted image from 22112021, 144330.png b/fogbackup/Mobile Portal/734/Pasted image from 22112021, 144330.png new file mode 100644 index 0000000..d1e0e1a Binary files /dev/null and b/fogbackup/Mobile Portal/734/Pasted image from 22112021, 144330.png differ diff --git a/fogbackup/Mobile Portal/735/Pasted image from 22012022, 140907.png b/fogbackup/Mobile Portal/735/Pasted image from 22012022, 140907.png new file mode 100644 index 0000000..40a705d Binary files /dev/null and b/fogbackup/Mobile Portal/735/Pasted image from 22012022, 140907.png differ diff --git a/fogbackup/Mobile Portal/738/image.png b/fogbackup/Mobile Portal/738/image.png new file mode 100644 index 0000000..ceb6ef6 Binary files /dev/null and b/fogbackup/Mobile Portal/738/image.png differ diff --git a/fogbackup/Mobile Portal/739/image.png b/fogbackup/Mobile Portal/739/image.png new file mode 100644 index 0000000..995d78a Binary files /dev/null and b/fogbackup/Mobile Portal/739/image.png differ diff --git a/fogbackup/Mobile Retail/.DS_Store b/fogbackup/Mobile Retail/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/fogbackup/Mobile Retail/.DS_Store differ diff --git a/fogbackup/Mobile Retail/10/toto.jpg b/fogbackup/Mobile Retail/10/toto.jpg new file mode 100644 index 0000000..f8b5b60 Binary files /dev/null and b/fogbackup/Mobile Retail/10/toto.jpg differ diff --git "a/fogbackup/Mobile Retail/10\\10.html" "b/fogbackup/Mobile Retail/10\\10.html" new file mode 100644 index 0000000..fb7c707 --- /dev/null +++ "b/fogbackup/Mobile Retail/10\\10.html" @@ -0,0 +1,80 @@ + + + + 10 | Faire des liens souligne pour ne pas utiliser les menus ... + + + +
+ Bug ID: 10
+ Title: Faire des liens souligne pour ne pas utiliser les menus ...
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: Divers
+ Category: Fonctionnalité
+ Title: Ce serait bien !
+
+
+ +
+ BugEvent ID: 27
+ Date/Time: 2013-01-12T05:52:24Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 28
+ Date/Time: 2013-01-12T05:52:24Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 29
+ Date/Time: 2013-01-12T05:53:59Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+
Il faut pouvoir cliquer dans la zone ou sur le lien pour naviguer.

+
Attachment: toto.jpg
+

+
+ +
+ + \ No newline at end of file diff --git a/fogbackup/Mobile Retail/16/screenshot.png b/fogbackup/Mobile Retail/16/screenshot.png new file mode 100644 index 0000000..6794114 Binary files /dev/null and b/fogbackup/Mobile Retail/16/screenshot.png differ diff --git "a/fogbackup/Mobile Retail/17\\17.html" "b/fogbackup/Mobile Retail/17\\17.html" new file mode 100644 index 0000000..6cb6706 --- /dev/null +++ "b/fogbackup/Mobile Retail/17\\17.html" @@ -0,0 +1,120 @@ + + + + 17 | Mettre des droits d'accès "*" aux directeurs non effacables + + + +
+ Bug ID: 17
+ Title: Mettre des droits d'accès "*" aux directeurs non effacables
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: Visualisation
+ Category: Fonctionnalité
+ Title: Ce serait bien !
+
+
+ +
+ BugEvent ID: 57
+ Date/Time: 2013-01-13T17:22:55Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 58
+ Date/Time: 2013-01-13T17:22:55Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 59
+ Date/Time: 2013-01-13T17:24:02Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Area changed from 'Divers' to 'Visualisation'. +Category changed from 'Bug' to 'Feature'. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 62
+ Date/Time: 2013-01-13T17:52:04Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Added subcase 18. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 65
+ Date/Time: 2013-01-13T17:52:14Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Added subcase 19. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 386
+ Date/Time: 2013-02-15T07:37:51Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Priority changed from '2 – A faire le plus tôt possible' to '3 – Ce serait bien !'. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ + \ No newline at end of file diff --git "a/fogbackup/Mobile Retail/18\\18.html" "b/fogbackup/Mobile Retail/18\\18.html" new file mode 100644 index 0000000..5281dee --- /dev/null +++ "b/fogbackup/Mobile Retail/18\\18.html" @@ -0,0 +1,96 @@ + + + + 18 | pour le CAGZ + + + +
+ Bug ID: 18
+ Title: pour le CAGZ
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: PL/SQL
+ Category: Fonctionnalité
+ Title: Ce serait bien !
+
+
+ +
+ BugEvent ID: 63
+ Date/Time: 2013-01-13T17:52:04Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 64
+ Date/Time: 2013-01-13T17:52:04Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 68
+ Date/Time: 2013-01-13T17:52:47Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Area changed from 'Visualisation' to 'PL/SQL'. +
+ Person: Frederik Benoist
+ Text:
+
Ajouter dans acces_type une valeur 'PROFIL' et access_value 'DIR'
+Dans ce cas l, on ne supprime pas les autorisations dans la procdure migr_acces
+
+

+

+
+ +
+ BugEvent ID: 387
+ Date/Time: 2013-02-15T07:38:09Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Priority changed from '2 – A faire le plus tôt possible' to '3 – Ce serait bien !'. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ + \ No newline at end of file diff --git "a/fogbackup/Mobile Retail/19\\19.html" "b/fogbackup/Mobile Retail/19\\19.html" new file mode 100644 index 0000000..840689d --- /dev/null +++ "b/fogbackup/Mobile Retail/19\\19.html" @@ -0,0 +1,94 @@ + + + + 19 | Pour le temps réel + + + +
+ Bug ID: 19
+ Title: Pour le temps réel
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: PL/SQL
+ Category: Fonctionnalité
+ Title: Ce serait bien !
+
+
+ +
+ BugEvent ID: 66
+ Date/Time: 2013-01-13T17:52:14Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 67
+ Date/Time: 2013-01-13T17:52:15Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 69
+ Date/Time: 2013-01-13T18:18:38Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Area changed from 'Visualisation' to 'PL/SQL'. +
+ Person: Frederik Benoist
+ Text:
+
Dans sauve_user_flash_info il faut faire une relation avec mr_acces
+ou bien toujours prendre mr_acces ....

+

+
+ +
+ BugEvent ID: 388
+ Date/Time: 2013-02-15T07:38:20Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Priority changed from '2 – A faire le plus tôt possible' to '3 – Ce serait bien !'. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ + \ No newline at end of file diff --git a/fogbackup/Mobile Retail/2/screenshot.png b/fogbackup/Mobile Retail/2/screenshot.png new file mode 100644 index 0000000..0cb27ef Binary files /dev/null and b/fogbackup/Mobile Retail/2/screenshot.png differ diff --git "a/fogbackup/Mobile Retail/21\\21.html" "b/fogbackup/Mobile Retail/21\\21.html" new file mode 100644 index 0000000..816d13a --- /dev/null +++ "b/fogbackup/Mobile Retail/21\\21.html" @@ -0,0 +1,67 @@ + + + + 21 | Dans visu boutiques exclues afficher si évènements (travaux ...) + + + +
+ Bug ID: 21
+ Title: Dans visu boutiques exclues afficher si évènements (travaux ...)
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: Divers
+ Category: Fonctionnalité
+ Title: A faire si temps disponible
+
+
+ +
+ BugEvent ID: 76
+ Date/Time: 2013-01-14T13:13:01Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 77
+ Date/Time: 2013-01-14T13:13:01Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ + \ No newline at end of file diff --git "a/fogbackup/Mobile Retail/22\\22.html" "b/fogbackup/Mobile Retail/22\\22.html" new file mode 100644 index 0000000..bea882d --- /dev/null +++ "b/fogbackup/Mobile Retail/22\\22.html" @@ -0,0 +1,67 @@ + + + + 22 | Table ge_flash_info_det en NOLOGGING + + + +
+ Bug ID: 22
+ Title: Table ge_flash_info_det en NOLOGGING
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: Divers
+ Category: Fonctionnalité
+ Title: A étudier
+
+
+ +
+ BugEvent ID: 78
+ Date/Time: 2013-01-15T04:44:50Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 79
+ Date/Time: 2013-01-15T04:44:51Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ + \ No newline at end of file diff --git a/fogbackup/Mobile Retail/3/toto.jpg b/fogbackup/Mobile Retail/3/toto.jpg new file mode 100644 index 0000000..dff1328 Binary files /dev/null and b/fogbackup/Mobile Retail/3/toto.jpg differ diff --git a/fogbackup/Mobile Retail/56/screenshot.png b/fogbackup/Mobile Retail/56/screenshot.png new file mode 100644 index 0000000..3219160 Binary files /dev/null and b/fogbackup/Mobile Retail/56/screenshot.png differ diff --git "a/fogbackup/Mobile Retail/5\\5.html" "b/fogbackup/Mobile Retail/5\\5.html" new file mode 100644 index 0000000..87d0035 --- /dev/null +++ "b/fogbackup/Mobile Retail/5\\5.html" @@ -0,0 +1,93 @@ + + + + 5 | Faire statistiques avec TOP 10 (Evol/Valeur) + + + +
+ Bug ID: 5
+ Title: Faire statistiques avec TOP 10 (Evol/Valeur)
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: Divers
+ Category: Fonctionnalité
+ Title: Ce serait bien !
+
+
+ +
+ BugEvent ID: 17
+ Date/Time: 2013-01-12T05:43:15Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 18
+ Date/Time: 2013-01-12T05:43:15Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 30
+ Date/Time: 2013-01-12T05:57:22Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Added subcase 11. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 33
+ Date/Time: 2013-01-12T05:57:42Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Added subcase 12. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ + \ No newline at end of file diff --git "a/fogbackup/Mobile Retail/7\\7.html" "b/fogbackup/Mobile Retail/7\\7.html" new file mode 100644 index 0000000..ce3b9c3 --- /dev/null +++ "b/fogbackup/Mobile Retail/7\\7.html" @@ -0,0 +1,80 @@ + + + + 7 | mémoriser dernier changement de période et slice gauche / droite + + + +
+ Bug ID: 7
+ Title: mémoriser dernier changement de période et slice gauche / droite
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: Divers
+ Category: Fonctionnalité
+ Title: A étudier
+
+
+ +
+ BugEvent ID: 21
+ Date/Time: 2013-01-12T05:51:20Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 22
+ Date/Time: 2013-01-12T05:51:20Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 39
+ Date/Time: 2013-01-12T06:10:46Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Priority changed from '3 – Normal' to '5 – A étudier'. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ + \ No newline at end of file diff --git "a/fogbackup/Mobile Retail/8\\8.html" "b/fogbackup/Mobile Retail/8\\8.html" new file mode 100644 index 0000000..5d6aa77 --- /dev/null +++ "b/fogbackup/Mobile Retail/8\\8.html" @@ -0,0 +1,80 @@ + + + + 8 | Graphiques highStock + + + +
+ Bug ID: 8
+ Title: Graphiques highStock
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: Divers
+ Category: Fonctionnalité
+ Title: A étudier
+
+
+ +
+ BugEvent ID: 23
+ Date/Time: 2013-01-12T05:51:28Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 24
+ Date/Time: 2013-01-12T05:51:28Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 40
+ Date/Time: 2013-01-12T06:11:00Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Priority changed from '3 – Normal' to '5 – A étudier'. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ + \ No newline at end of file diff --git "a/fogbackup/Mobile Retail/9\\9.html" "b/fogbackup/Mobile Retail/9\\9.html" new file mode 100644 index 0000000..e72cd75 --- /dev/null +++ "b/fogbackup/Mobile Retail/9\\9.html" @@ -0,0 +1,80 @@ + + + + 9 | ouverture (paramétrable) des indicateurs + + + +
+ Bug ID: 9
+ Title: ouverture (paramétrable) des indicateurs
+ Assigned To: Frederik Benoist
+ Project: Mobile Retail
+ Area: Divers
+ Category: Fonctionnalité
+ Title: A faire si temps disponible
+
+
+ +
+ BugEvent ID: 25
+ Date/Time: 2013-01-12T05:51:40Z
+ Verb: Opened
+ Event Description: Ouvert par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 26
+ Date/Time: 2013-01-12T05:51:40Z
+ Verb: Assigned
+ Event Description: Attribué à Frederik Benoist par Frederik Benoist
+ Changes:
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ BugEvent ID: 41
+ Date/Time: 2013-01-12T06:11:17Z
+ Verb: Edited
+ Event Description: Modifié par Frederik Benoist
+ Changes: Priority changed from '3 – Normal' to '6 – A fixer si temps disponible'. +
+ Person: Frederik Benoist
+ Text:
+

+

+
+ +
+ + \ No newline at end of file diff --git a/node_modules/.yarn-integrity b/node_modules/.yarn-integrity new file mode 100644 index 0000000..833cabe --- /dev/null +++ b/node_modules/.yarn-integrity @@ -0,0 +1,12 @@ +{ + "systemParams": "darwin-x64-83", + "modulesFolders": [ + "node_modules" + ], + "flags": [], + "linkedModules": [], + "topLevelPatterns": [], + "lockfileEntries": {}, + "files": [], + "artifacts": {} +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..18a1e41 --- /dev/null +++ b/package.json @@ -0,0 +1,3 @@ +{ + "dependencies": {} +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..fb57ccd --- /dev/null +++ b/yarn.lock @@ -0,0 +1,4 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + +