acls.ctp 52.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
<?php

use App\Controller\MaterielsController;
use App\Controller\SuivisController;
use App\Controller\EmpruntsController;
use App\Controller\DocumentsController;
use App\Controller\UsersController;
use App\Controller\ConfigurationsController;
use App\Controller\FournisseursController;
use App\Controller\PagesController;
use App\Controller\SurCategoriesController;
use App\Controller\FichemetrologiquesController;
use App\Controller\FormulesController;
use App\Controller\QrCodesController;


//$controllers = ['Materiels'];
//$controllers = ['Materiels', 'Suivis'];
$controllers = [
    new MaterielsController(),
    new SuivisController(),
    new EmpruntsController(),
    new DocumentsController(),
    new PagesController(),
    new FournisseursController(),
    new SurCategoriesController(),
    new ConfigurationsController(),
    new UsersController(),
    new FichemetrologiquesController(),
    new FormulesController(),
    new QrCodesController(),
    
    // TODO:
    //new UsersController(),
    // ...
];


function displayAuthorizationsForController($c) {
    ?>

    <a id="<?=$c->name?>">
    <u><b>Autorisations pour le contrôleur des <?=$c->name?> :</b></u>
    </a>
    <br><br>

	<!-- 
	<table border=1>
    -->
	<table>
		<thead>
		<tr>
			<th></th>
			<th colspan="10">CONDITIONS D'ACCÈS <br>(Statut et Appartenance du matériel)</th>
			<!-- 
			<th colspan="2">Condition d'accès<br>(Statut &amp; Appartenance<br>du matériel)</th>
			<th colspan="2">Condition d'accès<br>(Statut &amp; Appartenance<br>du matériel)</th>
			<th colspan="2">Condition d'accès<br>(Statut &amp; Appartenance<br>du matériel)</th>
			<th colspan="2">Condition d'accès<br>(Statut &amp; Appartenance<br>du matériel)</th>
			 -->
		</tr>
		<tr>
			<th scope="col">ACTION</th>
			<th scope="col" colspan="2">GÉNÉRAL<br>(règles par défaut)</th>
			<th scope="col" colspan="2">Utilisateur<br>(profil)</th>
			<th scope="col" colspan="2">Responsable<br>(profil)</th>
			<th scope="col" colspan="2">Administratif<br>(profil Gestionnaire)</th>
			<th scope="col" colspan="2">Super Administrateur<br>(profil)</th>
		</tr>
		</thead>
		
		<tbody>
		<?php
		$authorizations = $c->getAuthorizations();
		foreach (array_keys($authorizations) as $action) {
		?>
			<!--  Autorisations pour chaque action ($action) -->
    		<tr>
    		
    			<th class="action" scope="row"><?=$action?></th>
    			<?php
    			$authorizationsForCurrentAction = $authorizations[$action];
    			
    			foreach (array_keys($authorizationsForCurrentAction) as $role) {
    			    // Autorisations pour chaque role ($role)

    			    // On zappe le role "admin plus"
    			    if ($role == 'adminp') continue;
    			    $authorizationsForCurrentActionAndRole = $authorizationsForCurrentAction[$role];
    			    if (! is_array($authorizationsForCurrentActionAndRole)) {
    			        $color='black';
    			        if ($authorizationsForCurrentActionAndRole === 'default' || $authorizationsForCurrentActionAndRole === 0) {
    			            //$authorizationsForCurrentActionAndRole = 'règle générale';
    			            $authorizationsForCurrentActionAndRole = 'aucune';
    			            $color='green';
    			        }
    			        elseif ($authorizationsForCurrentActionAndRole === -1) {
    			            $authorizationsForCurrentActionAndRole = 'interdit';
    			            $color='red';
    			        }
			        ?>
    			        <td colspan="2" style="color:<?=$color?>"><?=$authorizationsForCurrentActionAndRole?></td>
	    			<?php
    			    }
    			    else {
    			        
    			        // 1) Condition sur le STATUT
    			        $condition_status = $authorizationsForCurrentActionAndRole[0];
    			        $color1='red';
    			        if ($condition_status === 0) {
    			            $condition_status = 'aucune';
    			            $color1='green';
    			        }
    			        
    			        // 2) Condition sur l'APPARTENANCE
    			        $condition_belonging = $authorizationsForCurrentActionAndRole[1];
    			        $condition_belonging = $condition_belonging===0 ? 'N' : 'Y';
    			        $color2 = $condition_belonging==='N' ? 'green' : 'red';
			        ?>
            			<td style="color:<?=$color1?>"><?=$condition_status?></td> 
            			<td style="color:<?=$color2?>"><?=$condition_belonging?></td> 
	    			<?php
    			    }
    			}
    			?>
    		</tr>
			<!--  Autorisations pour l'action $a -->

		<?php 
		}
		?>
		</tbody>

	</table>
	
<?php	
} // displayAuthorizationsForController
?>


<style>
table {
    /* 
    border-collapse: separate; 
    border: 1mm ridge grey;
    */
    border: 1mm ridge grey;
}
td, th {
    border: 1px solid #000;
    /*
    padding: 5px;
    */
}
th {
    text-align: center;
}
th.action {
    text-align: left;
}
</style>


	<h2>
		<!-- 
		<i class="icon-print"></i> 
		 -->
		AUTORISATIONS DES UTILISATEURS (droits en fonction des profils)
	</h2>
	
	<p>
    Les tableaux ci-dessous sont générés dynamiquement en fonction des autorisations actuelles.
    Ils sont donc totalement à jour et reflètent la réalité de l'expérience sur le site.
    </p>

	<!-- 
	<br />
	<br />
	<h3>AUTORISATIONS DES UTILISATEURS (PROFILS)</h3>
	 -->

	<br />
	<p>
		<!--  ancien lien WIKI 
		<a href="https://projects.irap.omp.eu/projects/inventirap/wiki/Installation#I-Etiquettes-optionnel">
		-->
		<!--  new lien GDOC -->
		=> <a href="https://docs.google.com/spreadsheets/d/16uAq_ko6bpKGxRZTL9rWq5XZ6kaVGMqowLURpBBdJJU">
			Lien vers le tableau des autorisations (fait à la main, donc pas forcément à jour)
		</a>
		<br>
		=> <a href="https://docs.google.com/document/d/1JTi3YX6X33asn9vfPGAPaFZ3u8IMGnAqCf2Ge0nWdtI/edit#heading=h.jaa6i3mtbmnr">
			Lien vers le chapitre sur les Autorisations dans la documentation technique
		</a>
	</p>
    <hr />
    
    <p>
    <u><b>Légende</b></u> :
    <ul>
    	<li><b>Couleur</b></li>
    		<ul>
            	<li><b style="color:red">rouge</b> => accès restreint partiellement ou totalement (il y a une condition d'accès)</li>
            	<li><b style="color:green">vert</b> => accès autorisé (PAS de condition d'accès)</li>
    		</ul>
    	<li><b>Condition sur le statut</b></li>
    		<ul>
            	<li><b>CREATED</b> => Le matériel doit avoir le statut "CREATED" ("créé")
            	<li><b>NOT CREATED</b> => Le matériel ne doit PAS avoir le statut "CREATED" (il doit donc avoir un statut supérieur)
            	<li><b>VALIDATED</b> => Le matériel doit être validé
            	<li><b>...</b>
    		</ul>
		</li>
    	<li><b>Condition sur l'appartenance</b></li>
    		<ul>
            	<li><b>Y</b> => L'utilisateur connecté doit être le "propriétaire" (utilisateur principal) du matériel (ou le responsable) 
            	<li><b>N</b> => Pas de condition d'appartenance
    		</ul>
		</li>
    </ul>
    </p>
    <hr />
    

	<?php 
	echo '<u>';
	foreach ($controllers as $controller) {
	    echo "<li><a href='#{$controller->name}'>{$controller->name}</a></li>";
    	//echo '<br>';
	}
	echo '</u>';
	?>
	<hr />


<?php

//var_dump($mc->getAuthorizationForAction('edit'));
foreach ($controllers as $controller) {
    //$mc = new MaterielsController();
    /*
    $controller_name = 'MaterielsController';
    $controller = new $controller_name ();
    $controller_name = $c.'Controller';
    $controller = (new $controller_name());
    */
    echo '<br>';
    displayAuthorizationsForController($controller);
    echo '<br>';
    echo "<a href='#'>Haut de page</a>";
    echo '<hr />';
}

?>








<?php 
/* ANCIENNE PAGE WEB



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!--This file was converted to xhtml by LibreOffice - see http://cgit.freedesktop.org/libreoffice/core/tree/filter/source/xslt for the code.-->
<head profile="http://dublincore.org/documents/dcmi-terms/">
<meta http-equiv="Content-Type"
	content="application/xhtml+xml; charset=utf-8" />
<title xml:lang="en-US">- no title specified</title>
<meta name="DCTERMS.title" content="" xml:lang="en-US" />
<meta name="DCTERMS.language" content="en-US" scheme="DCTERMS.RFC4646" />
<meta name="DCTERMS.source"
	content="http://xml.openoffice.org/odf2xhtml" />
<meta name="DCTERMS.creator" content="Etienne Pallier" />
<meta name="DCTERMS.issued" content="2014-01-21T19:49:00"
	scheme="DCTERMS.W3CDTF" />
<meta name="DCTERMS.modified" content="2016-06-24T15:39:15.489669761"
	scheme="DCTERMS.W3CDTF" />
<meta name="DCTERMS.provenance" content="" xml:lang="en-US" />
<meta name="DCTERMS.subject" content="," xml:lang="en-US" />
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/"
	hreflang="en" />
<link rel="schema.DCTERMS" href="http://purl.org/dc/terms/"
	hreflang="en" />
<link rel="schema.DCTYPE" href="http://purl.org/dc/dcmitype/"
	hreflang="en" />
<link rel="schema.DCAM" href="http://purl.org/dc/dcam/" hreflang="en" />
<style type="text/css">
@page {
	
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show
}

td, th {
	vertical-align: top;
	font-size: 12pt;
}

h1, h2, h3, h4, h5, h6 {
	clear: both
}

ol, ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
	margin: 0;
	padding: 0;
}

<!--
"
li span.odfLiEnd " - IE 7 issue -->li span . {
	clear: both;
	line-height: 0;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

span.footnodeNumber {
	padding-right: 1em;
}

span.annotation_style_by_filter {
	font-size: 95%;
	font-family: Arial;
	background-color: #fff000;
	margin: 0;
	border: 0;
	padding: 0;
}

* {
	margin: 0;
}

.P1 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	font-weight: bold;
}

.P10 {
	font-size: 10pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	font-style: italic;
	font-weight: bold;
}

.P11 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-style: italic;
}

.P12 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P13 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P14 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	margin-left: 1.251cm;
	margin-right: 0cm;
	text-indent: 0cm;
}

.P15 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	margin-left: 1.251cm;
	margin-right: 0cm;
	text-indent: 0cm;
}

.P16 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	margin-left: 1.251cm;
	margin-right: 0cm;
	text-indent: 0cm;
}

.P17 {
	font-size: 12pt;
	font-family: Times;
	writing-mode: lr-tb;
	margin-left: 1.251cm;
	margin-right: 0cm;
	text-indent: 0cm;
}

.P18 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	margin-left: 1.251cm;
	margin-right: 0cm;
	text-indent: 0cm;
}

.P19 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	font-weight: bold;
}

.P2 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	font-weight: bold;
}

.P22 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
}

.P23 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
}

.P25 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: bold;
}

.P26 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: bold;
}

.P28 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-style: italic;
	font-weight: bold;
}

.P29 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-style: italic;
	font-weight: bold;
}

.P3 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	font-weight: bold;
}

.P30 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-style: italic;
	font-weight: bold;
}

.P31 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	font-style: italic;
	font-weight: bold;
}

.P33 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-style: italic;
}

.P34 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	font-style: italic;
}

.P35 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
}

.P36 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
}

.P37 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
}

.P38 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
}

.P39 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P4 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P40 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
}

.P41 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-style: italic;
	font-weight: bold;
}

.P42 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: bold;
}

.P43 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: normal;
}

.P44 {
	font-size: 11pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: bold;
}

.P45 {
	font-size: 11pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: normal;
}

.P46 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: bold;
}

.P47 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P48 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	font-weight: bold;
}

.P49 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: bold;
}

.P5 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P51 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P52 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P53 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P54 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P55 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P56 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P57 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P58 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P59 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P6 {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P62 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: bold;
}

.P68 {
	font-size: 11pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	text-align: center ! important;
	font-weight: bold;
}

.P7 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
	font-weight: bold;
}

.P8 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.P9 {
	font-size: 9pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.Standard {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.Table_20_Contents {
	font-size: 12pt;
	font-family: Times New Roman;
	writing-mode: lr-tb;
}

.Tableau2 {
	width: 27.25cm;
	float: none;
	writing-mode: lr-tb;
}

.Tableau2_A1 {
	background-color: #cccccc;
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #000000;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_A2 {
	background-color: #dddddd;
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_C12 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_C13 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_C5 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_D12 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_D13 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_D4 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_D9 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_E10 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_E11 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_E12 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_E13 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_E4 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_E7 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_F12 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_F13 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_F3 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_F8 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-style: none;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_G1 {
	background-color: #cccccc;
	padding: 0.097cm;
	border-width: thin;
	border-style: solid;
	border-color: #000000;
}

.Tableau2_G12 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #000000;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_G13 {
	padding: 0.097cm;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000000;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #000000;
	border-top-style: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

.Tableau2_A {
	width: 3.893cm;
}

.Tableau2_G {
	width: 3.893cm;
}

.T1 {
	font-style: italic;
	font-weight: bold;
}

.T13 {
	font-size: 9pt;
	font-style: italic;
}

.T14 {
	font-size: 9pt;
	font-style: italic;
	font-weight: bold;
}

.T15 {
	font-size: 9pt;
	font-weight: bold;
}

.T16 {
	font-size: 9pt;
}

.T17 {
	font-size: 9pt;
}

.T18 {
	font-size: 9pt;
}

.T25 {
	font-weight: normal;
}

.T4 {
	font-weight: bold;
}

.T5 {
	font-weight: bold;
}

.T6 {
	font-weight: bold;
}

.T7 {
	font-weight: bold;
}

.WW8Num1z0 {
	font-family: Symbol;
}

.WW8Num2z0 {
	font-family: Symbol;
}

.WW8Num3z0 {
	font-family: Symbol;
}

.WW8Num4z0 {
	font-family: Symbol;
}

.WW8Num5z0 {
	font-family: Symbol;
}

.WW8Num6z0 {
	font-family: Symbol;
	font-size: 12pt;
}

.WW8Num7z0 {
	font-family: Symbol;
}

.WW8Num8z0 {
	font-family: Symbol;
	font-size: 9pt;
	font-weight: normal;
}

<!--
ODF styles with no properties representable as CSS -->.Tableau2.13 .T10 .T11 .T12 .T19 .T2 .T20 .T21 .T22 .T23 .T24 .T3 .T8 .T9 .WW8Num8z1 .WW8Num8z2 .WW8Num8z3 .WW8Num8z4 .WW8Num8z5 .WW8Num8z6 .WW8Num8z7 .WW8Num8z8 .WW8Num9z0 .WW8Num9z1 .WW8Num9z2 .WW8Num9z3 .WW8Num9z4 .WW8Num9z5 .WW8Num9z6 .WW8Num9z7 .WW8Num9z8
	{
	
}
</style>
</head>
<body dir="ltr">
	<!-- style="max-width:29.7cm;margin-top:1cm; margin-bottom:1cm; margin-left:1cm; margin-right:1.45cm; writing-mode:lr-tb; " -->
	<!-- Cette propiété fait TOTALEMENT bugguer le design du site -->
	<div class="index">
		<p class="P46">ACL (Access Control List)</p>
		<p class="P11">
			(Etienne Pallier – 24/<span class="T22">06</span>/201<span
				class="T23">6</span>)
		</p>
		<p class="P1"> </p>
		<p class="P4">
			Cette page n'est plus à jour, se référer à <a
				href="https://docs.google.com/document/d/1JTi3YX6X33asn9vfPGAPaFZ3u8IMGnAqCf2Ge0nWdtI/edit#heading=h.jaa6i3mtbmnr"
				onclick="window.open(this.href); return false;">ce document</a>
		</p>
		<p class="P1"> </p>
		<p class="P1">I – Cycle de vie du statut du matériel</p>
		<p class="P1"> </p>
		<p class="Standard">
			<span class="T5">Créer</span><span class="T2"> un matériel ==</span><span
				class="T9">&gt; passe alors en statut </span><span class="T7">CREATED
				==&gt; </span><span class="T1">peut alors être éventuellement
				supprimé (mais ne pourra plus être supprimé ensuite)</span>
		</p>
		<p class="Standard">
			<span class="T7">Valider</span><span class="T9"> un matériel
				CREATED ==&gt; passe alors en statut </span><span class="T7">VALIDATED
			</span><span class="T9">(</span><span class="T11">resp et </span><span
				class="T9">admin only)</span>
		</p>
		<p class="P4">
			<span class="T7">Demander l'Archivage</span><span class="T9"> d'un
				materiel VALIDATED ==&gt; passe alors en statut </span><span
				class="T7">TOBEARCHIVED</span><span class="T9"> (resp et admin only)</span>
		</p>
		<p class="P4">
			<span class="T7">Sortir</span><span class="T9"> de l'inventaire
				(Valider une demande d'archivage d'un matériel TOBEARCHIVED) ==&gt;
				statut </span><span class="T7">ARCHIVED</span><span class="T9">
				(admin only)</span>
		</p>
		<p class="P4">
			<span class="T7">Désarchiver</span><span class="T9"> un matériel
				==&gt; repasse de TOBEARCHIVED ou ARCHIVED à </span><span class="T7">VALIDATED</span><span
				class="T9"> (admin only) </span>
		</p>
		<p class="P4"> </p>
		<p class="P5">En résumé :</p>
		<p class="P4"> </p>
		<p class="P3">CREATED ==&gt;  VALIDATED ==&gt;  TOBEARCHIVED ==&gt;
			 ARCHIVED</p>
		<p class="P2">
			<span class="T12">     </span><span class="T8">I                     
				  /\                        I                                I</span>
		</p>
		<p class="P2">
			<span class="T12">    </span><span class="T8">V                     
				              I ------------------------        I
				---------------------------------        I (adminplus only)</span>
		</p>
		<p class="P3">DELETED</p>
		<p class="P2"> </p>
		<p class="P2"> </p>
		<p class="P2"> </p>
		<p class="P1">II - Droits des utilisateurs selon leur profil</p>
		<p class="P1"> </p>
		<p class="P1">A – Globalement (principes généraux)</p>

		<p class="P1"> </p>
		<p class="P6">Un utilisateur non logué ne doit RIEN pouvoir faire.
			Seulement se loguer, c'est tout. Il n'a accès qu'à la page d'accueil
			(de login).</p>
		<p class="P6">Une fois logué, un utilisateur a des droits différents
			selon son profil, globalement :</p>
		<p class="P14">
			<span class="T2">- un </span><span class="T5">USER</span><span
				class="T2"> ne peut que créer un matériel, un suivi, ou un emprunt,
				consulter, et modifier (uniquement ce qu'il a créé lui-même)</span>
		</p>
		<p class="P18">
			<span class="T2">- un </span><span class="T5">RESPONSABLE</span><span
				class="T2"> a tous les droits sauf accès à certains champs et
				certaines vues réservées à l'administration (ADMIN). Il ne peut pas
				non plus archiver un matériel, mais seulement demander l'archivage
				(comme un USER)(uniquement ce </span><span class="T3">lié à son
				groupe métier ou thématiques</span><span class="T2">)</span>
		</p>
		<p class="P14">
			<span class="T2">- un </span><span class="T5">ADMIN</span><span
				class="T2">(istratif) a tous les droits (y-compris champs réservés à
				l'administration)</span>
		</p>
		<p class="P14">
			<span class="T2">- un </span><span class="T5">ADMINPLUS</span><span
				class="T2"> (administratif Plus) a tous les droits de ADMIN et en
				plus il peut modifier un matériel quelque soit son statut (y-compris
				TOBEARCHIVED et ARCHIVED), notamment il peut modifier le statut du
				matériel (pour le rétrograder)</span>
		</p>
		<p class="P14">
			<span class="T2">- un </span><span class="T5">SUPERADMIN</span><span
				class="T2"> a tous les droits : ceux d'ADMINPLUS et certains droits
				supplémentaires pour lui permettre des corrections d'erreur et la
				configuration de l'application (notamment l'administration des
				utilisateurs...)</span>
		</p>
		<p class="P15"> </p>
		<p class="Standard">
			<span class="T2">Concernant les informations internes permettant de
				savoir </span><span class="T5">qui a fait quoi</span><span
				class="T2"> (mises en place en février 2014), elles ne sont bien sûr
				pas modifiables puisque gérées automatiquement par le système, mais
				sont visibles par tous excepté le profil USER.</span>
		</p>
		<p class="P1"></p>
		<p class="P7">B - sur la table MATERIEL</p>
		<table border="0" cellspacing="0" cellpadding="0" class="Tableau2">
			<colgroup>
				<col width="170" />
				<col width="170" />
				<col width="170" />
				<col width="170" />
				<col width="170" />
				<col width="170" />
				<col width="170" />
			</colgroup>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A1"><p
						class="Table_20_Contents"> </p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A1"><p
						class="P41">ALL (TOUS)</p>
					<p class="P43">(droits par defaut)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A1"><p
						class="P40">
						<span class="T5">U</span><span class="T6">tilisateur </span><span
							class="T5"> </span><span class="T2">(quelconque)</span>
					</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A1"><p
						class="P42">Responsable</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A1"><p
						class="P42">Administration</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A1"><p
						class="P42">Administration Plus</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_G1"><p
						class="P42">Super-Administrateur</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Read (un seul ou une liste)</p>
					<p class="P45">(view ou index)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P25">Y</p>
					<p class="Table_20_Contents">
						<span class="T14">champs caches:</span><span class="T13"> donnees
							admin</span>
					</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P36">idem ALL</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P36">idem ALL</p></td>
				<td rowspan="3" style="text-align: left; width: 3.893cm;"
					class="Tableau2_E4"><p class="P23">
						<span class="T16">(idem Responsable </span><span class="T15">+
							 donnees admin</span><span class="T16">)</span>
					</p>
					<p class="P37"> </p>
					<p class="P23">
						<span class="T13">En mode edit (update), si VALIDATED, on ajoute
							aux donnees </span><span class="T14">readonly</span><span
							class="T13"> les </span><span class="T14">donnees admin</span>
					</p></td>
				<td rowspan="2" style="text-align: left; width: 3.893cm;"
					class="Tableau2_F3"><p class="P37">idem Admin</p></td>
				<td rowspan="11" style="text-align: left; width: 3.893cm;"
					class="Tableau2_G12"><p class="P37">idem Adminplus</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Create (1)</p>
					<p class="P45">(add)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P26">Y</p>
					<p class="P39">
						<span class="T14">champs caches</span><span class="T13">:</span>
					</p>
					<p class="P34">donnees admin + statut + etiquette</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P36">Idem ALL</p>
					<p class="P39">
						<span class="T14">champs readonly </span><span class="T13">:</span>
					</p>
					<p class="P34">nom_responsable</p></td>
				<td rowspan="2" style="text-align: left; width: 3.893cm;"
					class="Tableau2_D4"><p class="P36">idem ALL</p>
					<p class="P36">(+ etiquette)</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Update (1)</p>
					<p class="P45">(edit)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P26">Y</p>
					<p class="P33">ssi</p>
					<p class="P39">
						<span class="T15">CREATED</span><span class="T16"> (tous les
							champs) </span>
					</p>
					<p class="P39">
						<span class="T13">ou </span><span class="T14">VALIDATED</span><span
							class="T13"> (quelques champs visibles sont </span><span
							class="T14">readonly</span><span class="T13">) (1)</span>
					</p>
					<p class="P34"> </p>
					<p class="P39">
						<span class="T14">champs caches</span><span class="T13">:</span>
					</p>
					<p class="P34">donnees admin + statut + etiquette</p></td>
				<td rowspan="2" style="text-align: left; width: 3.893cm;"
					class="Tableau2_C5"><p class="P36">idem ALL</p>
					<p class="P22">
						<span class="T16">ssi </span><span class="T15">createur</span>
					</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P37">idem Admin</p>
					<p class="P23">
						<span class="T16">(</span><span class="T15">tous les statuts</span><span
							class="T16">)</span>
					</p>
					<p class="P23">
						<span class="T16">(+ champ </span><span class="T15">statut</span><span
							class="T16">)</span>
					</p>
					<p class="P23"> </p>
					<p class="P23">
						<span class="T16">TOBEARCHIVED ou ARCHIVED: </span><span
							class="T15">seulement le statut</span>
					</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Delete</p>
					<p class="P45">(delete)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P26">Y</p>
					<p class="P29">ssi CREATED</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P37">idem ALL</p></td>
				<td rowspan="3" style="text-align: left; width: 3.893cm;"
					class="Tableau2_E7"><p class="P37">idem Responsable</p></td>
				<td rowspan="4" style="text-align: left; width: 3.893cm;"
					class="Tableau2_F8"><p class="P37">idem Admin</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Valider</p>
					<p class="P45">(statusValidated)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P25">N</p>
					<p class="P28">(resp+)</p></td>
				<td rowspan="7" style="text-align: left; width: 3.893cm;"
					class="Tableau2_C12"><p class="P36">idem ALL</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P37">Y</p>
					<p class="P30">ssi</p>
					<p class="P30">CREATED</p>
					<p class="P37"> </p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Demander archivage</p>
					<p class="P45">(statusToBeArchived)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P25">N</p>
					<p class="P28">(resp+)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P37">Y</p>
					<p class="P30">ssi</p>
					<p class="P30">VALIDATED</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Sortir de l'inventaire</p>
					<p class="P45">
						<span class="T12"> </span>(statusArchived)
					</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P26">N</p>
					<p class="P29">(admin+)</p></td>
				<td rowspan="2" style="text-align: left; width: 3.893cm;"
					class="Tableau2_D9"><p class="P37">idem ALL</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P35">Y</p>
					<p class="P28">ssi</p>
					<p class="P28">TOBEARCHIVED</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Desarchiver (2)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P26">N</p>
					<p class="P29">(adminplus+)</p></td>
				<td rowspan="2" style="text-align: left; width: 3.893cm;"
					class="Tableau2_E10"><p class="P37">idem Responsable</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P37">Y</p>
					<p class="P30">ssi</p>
					<p class="P30">ARCHIVED ou</p>
					<p class="P30">TOBEARCHIVED</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Exporter</p>
					<p class="P45">(csv)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P26">N</p>
					<p class="P29">(resp+)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P37">Y</p></td>
				<td rowspan="3" style="text-align: left; width: 3.893cm;"
					class="Tableau2_F12"><p class="P37">idem Admin</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">
						Montee de statut group<span class="T24">é</span>e
					</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P26">N</p>
					<p class="P29">(admin+)</p></td>
				<td rowspan="2" style="text-align: left; width: 3.893cm;"
					class="Tableau2_D12"><p class="P37">idem ALL</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E11"><p
						class="P38">Y</p></td>
			</tr>
			<tr>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P44">Edition (4)</p>
					<p class="P44">DOCUMENTS</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E12"><p
						class="P26">N</p>
					<p class="P29">(admin+)</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E12"><p
						class="P37">Y</p>
					<p class="P31">- admission : ssi VALIDATED</p>
					<p class="P31">- sortie : ssi TOBEARCHIVED ou ARCHIVED</p></td>
			</tr>
			<tr class="Tableau213">
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_A2"><p
						class="P68">Fiche Matériel</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E13"><p
						class="P62">
						Y <span class="T25">(sans partie admin)</span>
					</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_C13"><p
						class="P49">
						Y <span class="T25">(sans partie admin)</span>
					</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_D13"><p
						class="P49">
						Y <span class="T25">(sans partie admin)</span>
					</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_E13"><p
						class="P62">Y</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_F13"><p
						class="P49">Y</p></td>
				<td style="text-align: left; width: 3.893cm;" class="Tableau2_G13"><p
						class="P49">
						Y <span class="T25">(sans partie admin)</span>
					</p></td>
			</tr>
		</table>
		<p class="P7"> </p>
		<p class="P7"> </p>
		<p class="P6"> </p>
		<p class="P10">Par défaut, le superadmin a TOUS les droits</p>
		<p class="P10"> </p>
		<p class="Standard">
			<span class="T15">Conventions d'écriture </span><span class="T16">: </span>
		</p>
		<p class="P14">
			<span class="T16">- r</span><span class="T15">esp+</span><span
				class="T16"> = possible pour un </span><span class="T15">Responsable
				et plus </span><span class="T16">(responsable, admin, adminplus, et
				superadmin)</span>
		</p>
		<p class="P14">
			<span class="T16">- </span><span class="T15">admin+</span><span
				class="T16"> = possible pour un </span><span class="T15">Admin</span><span
				class="T16"> </span><span class="T15">et plus </span><span
				class="T16">(admin, adminplus, et superadmin)</span>
		</p>
		<p class="P16">- ...</p>
		<p class="P16"> </p>
		<p class="Standard">
			<span class="T15">Notes </span><span class="T16">:</span>
		</p>
		<p class="P9"> </p>
		<ol>
			<li><p class="P47" style="margin-left: 0cm;">
					<span class="WW8Num8z0"
						style="display: block; float: left; min-width: 0, 635cm;">(1)</span><span
						class="T15">Droits en modification (edit) </span><span class="T16">:</span><span
						class="odfLiEnd"></span> 
				</p></li>
		</ol>
		<p class="P16">- Un simple « user » ne doit pas pouvoir modifier le
			responsable, ni le statut, ni l'étiquette, ni les données admin d'un
			matériel (en mode Création comme Modification)</p>
		<p class="P16">- Un  «responsable » ne doit pas pouvoir modifier le
			statut, ni les données admin d'un matériel (en mode Création comme
			Modification)</p>
		<p class="P16">- Les données admin ne sont accessibles qu'aux profils
			admin+</p>
		<p class="P14">
			<span class="T16">- Le champ "</span><span class="T15">status</span><span
				class="T16">" n'est modifiable que par les profils adminplus+</span>
		</p>
		<p class="P14">
			<span class="T16">- Tout le monde peut modifier un matériel </span><span
				class="T15">VALIDATED </span><span class="T16">(</span><span
				class="T15">user </span><span class="T16">ne peut modifier que </span><span
				class="T15">ses</span><span class="T16"> matériels, </span><span
				class="T17">resp ne peut modifier que les matériels de son groupe
				thématique ou métier</span><span class="T16">),</span>
		</p>
		<p class="P14">
			<span class="T16">MAIS PAS</span><span class="T15"> certains champs</span><span
				class="T16"> qui sont </span><span class="T15">readonly</span><span
				class="T16"> (</span><span class="T18">sur_categorie_id',
				'categorie_id', 'materiel_administratif', 'materiel_technique',
				'date_acquisition', 'nom_responsable', 'fournisseur', 'organisme',
				'prix_ht')</span>
		</p>
		<p class="P14">
			<span class="T16">Les seuls champs qu'on peut éditer sont donc : (</span><span
				class="T18">designation, sous_categorie, materiel_administratif,
				materiel_technique, description, etiquette, lieu_stockage,
				lieu_detail, numero_serie, groupes_thematique, groupes_metier),</span><span
				class="T16"><br />- Seuls les profils </span><span class="T15">adminplus+</span><span
				class="T16"> peuvent modifier un matériel </span><span class="T15">TOBEARCHIVED,
				ou ARCHIVED </span><span class="T16">mais </span><span class="T15">UNIQUEMENT
				le champ "status" </span><span class="T16">(pour pouvoir rétrograder
				à CREATED ou VALIDATED)</span>
		</p>
		<p class="P14">
			<span class="T16">- Le seul moyen de modifier COMPLÈTEMENT un
				matériel VALIDATED, TOBEARCHIVED, ou ARCHIVED, <br />c'est de
			</span><span class="T15">changer son statut</span><span class="T16">,
				en le rétrogradant à CREATED (seuls les profils adminplus+ peuvent
				le faire)</span>
		</p>
		<p class="P16"> </p>
		<ol>
			<li><p class="P47" style="margin-left: 0cm;">
					<span class="WW8Num8z0"
						style="display: block; float: left; min-width: 0, 635cm;">(2)</span><span
						class="T15">Désarchiver </span><span class="T16">: consiste à
						rétrograder un matériel ARCHIVED ou TOBEARCHIVED dans le statut
						VALIDATED ou CREATED (adminplus+ only) ; utile en cas d'erreur</span><span
						class="odfLiEnd"></span> 
				</p></li>
		</ol>
		<p class="P8"> </p>
		<ol>
			<li><p class="P47" style="margin-left: 0cm;">
					<span class="WW8Num8z0"
						style="display: block; float: left; min-width: 0, 635cm;">(3)</span><span
						class="T15">Montée de statut groupée : </span><span class="T16">seul
						ADMIN peut (exporter tout ou partie de la liste des matériels, et)
					</span><span class="T15">augmenter (+1) le statut d'un groupe de
						matériels</span><span class="T16">, depuis la vue « index » (vue
						spéciale pour ADMIN, avec des cases à cocher et boutons pour
						exporter ou faire évoluer le statut)</span><span class="odfLiEnd"></span> 
				</p></li>
		</ol>
		<p class="P8"> </p>
		<ol>
			<li><p class="P48" style="margin-left: 0cm;">
					<span class="WW8Num8z0"
						style="display: block; float: left; min-width: 0, 635cm;">(4)</span>Edition
					des documents :<span class="odfLiEnd"></span> 
				</p></li>
		</ol>
		<p class="P16">Admission : quand on "VALIDE" un matériel "CREATED", le
			statut passe en VALIDATED et le document d'admission est
			automatiquement édité</p>
		<p class="P16">Sortie : quand on "ARCHIVE" un document "TOBEARCHIVED",
			le statut passe en ARCHIVED et le document de sortie est
			automatiquement édité</p>
		<p class="P16">De plus :</p>
		<p class="P16">- Bouton "Doc admission" affiché à partir du statut
			"VALIDATED"</p>
		<p class="P16">- Bouton "Doc Sortie" affiché à partir du statut
			TOBEARCHIVED (et donc aussi pour ARCHIVED)</p>
		<p class="P16">Enfin, Le doc de sortie doit être couplée avec la liste
			des matériels a archiver (TOBEARCHIVED) quand il y a une demande de
			sortie.</p>
		<p class="P16"> </p>
		<p class="P17"> </p>
		<p class="P1">C - sur les différentes VUES liées au matériel</p>
		<p class="Standard"> </p>
		<p class="P6">
			<span class="T4">Page accueil </span>:
		</p>
		<p class="P6">
			<span> Administration <span class="T20">&amp; Administration Plus </span>voit
				un menu avec 2 options :
			</span>
		</p>
		<ul>
			<li>
				<ul>
					<li>
						<ul>
							<li><p class="P51" style="margin-left: 0cm;">
									<span class="WW8Num2z0"
										style="display: block; float: left; min-width: 0, 635cm;">.</span>« Voir
									les matériels à valider »<span class="odfLiEnd"></span> 
								</p></li>
							<li><p class="P52" style="margin-left: 0cm;">
									<span class="WW8Num2z0"
										style="display: block; float: left; min-width: 0, 635cm;">.</span>« Voir
									les matériels à sortir de l'inventaire »<span class="odfLiEnd"></span> 
								</p></li>
						</ul>
					</li>
				</ul>
				<p class="P52" style="margin-left: 0cm;">
					<span class="WW8Num2z0"
						style="display: block; float: left; min-width: 0cm">
						<!-- -->
					</span><span class="T21">Responsable </span>voit un menu avec <span
						class="T21">3</span> options :<span class="odfLiEnd"></span> 
				</p>
				<ul>
					<li>
						<ul>
							<li><p class="P52" style="margin-left: 0cm;">
									<span class="WW8Num2z0"
										style="display: block; float: left; min-width: 0, 635cm;">.</span>« Voir
									les matériels <span class="T21">de mon groupe métier</span> »<span
										class="odfLiEnd"></span> 
								</p></li>
							<li><p class="P52" style="margin-left: 0cm;">
									<span class="WW8Num2z0"
										style="display: block; float: left; min-width: 0, 635cm;">.</span>« Voir
									les matériels <span class="T21">de mon groupe métier à valider</span> »<span
										class="odfLiEnd"></span> 
								</p></li>
							<li><p class="P52" style="margin-left: 0cm;">
									<span class="WW8Num2z0"
										style="display: block; float: left; min-width: 0, 635cm;">.</span>« <span
										class="T21">Voir les suivis des matériels donc je suis
										responsable »</span><span class="odfLiEnd"></span> 
								</p></li>
						</ul>
					</li>
				</ul>
			</li>
		</ul>
		<p class="P1">Page Outils :</p>
		<p class="P6">User n'a pas accès à cette page</p>
		<p class="P6">Les autres ont quelques options</p>
		<p class="P6">superadmin a ces options en plus :</p>
		<ul>
			<li><p class="P53" style="margin-left: 0cm;">
					<span class="WW8Num4z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Configuration
					générale de l'application<span class="odfLiEnd"></span> 
				</p></li>
			<li><p class="P53" style="margin-left: 0cm;">
					<span class="WW8Num4z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Gérer
					les utilisateurs <span class="T20">privilégiés</span><span
						class="odfLiEnd"></span> 
				</p></li>
			<li><p class="P53" style="margin-left: 0cm;">
					<span class="WW8Num4z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Passer
					en mode debug<span class="odfLiEnd"></span> 
				</p></li>
			<li><p class="P54" style="margin-left: 0cm;">
					<span class="WW8Num4z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Passer
					en mode install<span class="odfLiEnd"></span> 
				</p></li>
		</ul>
		<p class="P6"> </p>
		<p class="Standard">
			<span class="T5">Vue materiel/index (liste) </span><span class="T2">:
				limiter aux </span><span class="T5">matériels actifs</span><span
				class="T2"> (non archivés)</span>
		</p>
		<ul>
			<li>
				<ul>
					<li><p class="P55" style="margin-left: 0cm;">
							<span class="WW8Num1z0"
								style="display: block; float: left; min-width: 0, 635cm;">.</span>Admin<span
								class="T20">+ </span>voit des boutons pour filtrer par « tous »,
							« à valider », « validés », « à sortir », « archivés »<span
								class="odfLiEnd"></span> 
						</p></li>
				</ul>
			</li>
		</ul>
		<p class="P6"> </p>
		<p class="Standard">
			<span class="T5">Vue materiel/find </span><span class="T2">: limiter
				aux </span><span class="T5">matériels actifs</span><span class="T2">
				(non archivés)</span>
		</p>
		<p class="P6">
			<span> Seul le<span class="T20">s</span> profil<span class="T20">s</span>
				Admin<span class="T20">+ </span>voit TOUS les matériels (y-compris
				archivés)
			</span>
		</p>
		<p class="P6"> </p>
		<p class="P6">
			<span class="T4">Vue materiel/view </span>:
		</p>
		<p class="P6">
			<span> boutons « Imprimer Etiquettes » : <span class="T20">resp+</span></span>
		</p>
		<p class="P6"> </p>
		<p class="P6">
			<span class="T4">Vue materiel/edit </span>:
		</p>
		<ul>
			<li><p class="P56" style="margin-left: 0cm;">
					<span class="WW8Num5z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Etiquette
					O/N (admin<span class="T20">+)</span><span class="odfLiEnd"></span> 
				</p></li>
			<li><p class="P56" style="margin-left: 0cm;">
					<span class="WW8Num5z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Statut
					(<span class="T20">superadmin+)</span><span class="odfLiEnd"></span> 
				</p></li>
			<li><p class="P56" style="margin-left: 0cm;">
					<span class="WW8Num5z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Informations
					administratives (admin<span class="T20">+)</span><span
						class="odfLiEnd"></span> 
				</p></li>
		</ul>
		<p class="P6"> </p>
		<p class="P6"> </p>
		<p class="P1"> </p>
		<p class="P19">D - sur un SUIVI et un EMPRUNT</p>
		<p class="P1"> </p>
		<ul>
			<li><p class="P57" style="margin-left: 0cm;">
					<span class="WW8Num3z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Dans
					tous les cas, on ne doit pas pouvoir emprunter ou suivre un
					materiel non validé (CREATED)<span class="odfLiEnd"></span> 
				</p></li>
			<li><p class="P57" style="margin-left: 0cm;">
					<span class="WW8Num3z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>User
					a les droits C, R, U (si créateur), D (si créateur)<span
						class="odfLiEnd"></span> 
				</p></li>
			<li><p class="P57" style="margin-left: 0cm;">
					<span class="WW8Num3z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Resp+
					a les droits C, R, U, D<span class="odfLiEnd"></span> 
				</p></li>
		</ul>
		<p class="P4">
			<span class="T9">Un USER peut modifier/supprimer un emprunt dont il
				est soit le créateur soit l'emprunteur</span><span class="T19">.</span>
		</p>
		<p class="P12">Un USER qui créé un emprunt ne doit pas pouvoir changer
			le nom de l'emprunteur (par défaut, c'est lui). Ainsi, il pourra
			modifier/supprimer cette fiche au besoin plus tard. Par défaut donc,
			pour un user, emprunt.emprunteur=creator,
			materiel.responsable=creator</p>
		<p class="P13">Tout le monde peut rechercher un suivi,</p>
		<p class="P5"> </p>
		<p class="P5"> </p>
		<p class="P3">E - sur les UTILISATEURS</p>
		<p class="P4">
			<span class="T9">Par défaut, superadmin a tous les droits, et les
				autres profils n'ont que le droit de lecture (</span><span
				class="T7">view </span><span class="T9">et </span><span class="T7">index</span><span
				class="T9">)</span>
		</p>
		<p class="P5"> </p>
		<p class="P5"> </p>
		<p class="P3">F - sur tous les autres objets métiers</p>
		<p class="P5">Voici la liste des autres objets métiers :</p>
		<ul>
			<li><p class="P58" style="margin-left: 0cm;">
					<span class="WW8Num7z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Catégories
					(et domaines et sous-catégories)<span class="odfLiEnd"></span> 
				</p></li>
		</ul>
		<ul>
			<li><p class="P59" style="margin-left: 0cm;">
					<span class="WW8Num6z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Groupes
					thématiques<span class="odfLiEnd"></span> 
				</p></li>
			<li><p class="P59" style="margin-left: 0cm;">
					<span class="WW8Num6z0"
						style="display: block; float: left; min-width: 0, 635cm;">.</span>Groupes
					métiers<span class="odfLiEnd"></span> 
				</p></li>
		</ul>
		<p class="P4">
			<span class="T9">Par défaut, pour tous ces objets, superadmin a tous
				les droits, admin</span><span class="T10">plus</span><span
				class="T9"> a tous les droits sauf « delete », et les autres profils
				n'ont que le droit de lecture (</span><span class="T7">view </span><span
				class="T9">et </span><span class="T7">index</span><span class="T9">)</span>
		</p>
	</div>
	<!--
	<div class="actions">
			<php echo $this->element('menu') ?>
		</div>
	-->
</body>
</html>



*/
?>