mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 18:18:18 +01:00
307 lines
9.4 KiB
JavaScript
307 lines
9.4 KiB
JavaScript
// Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
||
//
|
||
// Script javascript mis en en-tete de pages (dans section head)
|
||
//
|
||
// \file htdocs/lib/lib_head.js
|
||
// \brief Fichier qui inclue les fonctions javascript d'en-tete si option use_javascript active
|
||
// \version $Revision$
|
||
|
||
|
||
// Pour la fonction de saisi auto des villes
|
||
// *****************************************
|
||
|
||
function autofilltownfromzip_PopupPostalCode(postalcode,objectville)
|
||
{
|
||
var url = 'searchpostalcode.php?cp=' + postalcode + '&targetobject=window.opener.document.formsoc.' + objectville.name;
|
||
// alert(url);
|
||
var hWnd = window.open(url, "SearchPostalCodeWindow", "width=" + 300 + ",height=" + 150 + ",resizable=yes,scrollbars=yes");
|
||
if((document.window != null) && (!hWnd.opener)) hWnd.opener = document.window;
|
||
}
|
||
|
||
function autofilltownfromzip_save_refresh_edit()
|
||
{
|
||
document.formsoc.action.value="edit";
|
||
document.formsoc.submit();
|
||
}
|
||
|
||
function autofilltownfromzip_save_refresh_create()
|
||
{
|
||
document.formsoc.action.value="create";
|
||
document.formsoc.submit();
|
||
}
|
||
|
||
|
||
// Pour la saisie des dates par calendrier
|
||
// ***************************************
|
||
|
||
function showDP(base,dateFieldID,format)
|
||
{
|
||
var dateField= getObjectFromID(dateFieldID);
|
||
|
||
//check to see if another box is already showing
|
||
var alreadybox=getObjectFromID("DPCancel");
|
||
if(alreadybox) closeDPBox();
|
||
|
||
//get positioning
|
||
var thetop=getTop(dateField)+dateField.offsetHeight;
|
||
var theleft=getLeft(dateField);
|
||
if (theleft+140 > window.innerWidth)
|
||
theleft= theleft-140+dateField.offsetWidth-15;
|
||
|
||
showDP.box=document.createElement("div");
|
||
showDP.box.className="bodyline";
|
||
showDP.box.style.siplay="block";
|
||
showDP.box.style.position="absolute";
|
||
showDP.box.style.top=thetop + "px";
|
||
showDP.box.style.left=theleft + "px";
|
||
|
||
showDP.datefieldID=dateFieldID;
|
||
|
||
if(dateField.value)
|
||
{
|
||
selDate=stringToDate(dateField.value,format);
|
||
year=selDate.getFullYear();
|
||
month=selDate.getMonth()
|
||
day=selDate.getDay();
|
||
}
|
||
else
|
||
{
|
||
tdate=new Date();
|
||
year=tdate.getFullYear();
|
||
month=tdate.getUTCMonth()+1;
|
||
day=tdate.getDay();
|
||
}
|
||
loadMonth(base,month,year,year+'-'+month+'-'+day);
|
||
hideSelectBoxes();
|
||
document.body.appendChild(showDP.box);
|
||
}
|
||
|
||
// selectedDate must be in format YYYY-MM-DD
|
||
function loadMonth(base,month,year,selectedDate)
|
||
{
|
||
showDP.box.innerHTML="Loading...";
|
||
var theURL=base+"datepicker.php?cm=shw";
|
||
theURL+="&m="+encodeURIComponent(month);
|
||
theURL+="&y="+encodeURIComponent(year);
|
||
if (selectedDate){
|
||
tempdate=mysqlstringToDate(selectedDate);
|
||
theURL+="&sd="+encodeURIComponent(tempdate.getFullYear()+"-"+tempdate.getMonth()+"-"+tempdate.getDate());
|
||
}
|
||
|
||
loadXMLDoc(theURL,null,false);
|
||
showDP.box.innerHTML=req.responseText;
|
||
}
|
||
|
||
|
||
function closeDPBox(){
|
||
document.body.removeChild(showDP.box);
|
||
displaySelectBoxes();
|
||
showDP.box=null;
|
||
showDP.datefieldID=null;
|
||
}
|
||
|
||
function dpClickDay(year,month,day){
|
||
var thefield=getObjectFromID(showDP.datefieldID);
|
||
thefield.value=day+"/"+month+"/"+year;
|
||
if(thefield.onchange) thefield.onchange.call(thefield);
|
||
closeDPBox();
|
||
}
|
||
|
||
function dpHighlightDay(year,month,day){
|
||
var displayinfo=getObjectFromID("dpExp");
|
||
var months=Array("January","February","March","April","May","June","July","August","September","October","November","December");
|
||
displayinfo.innerHTML=months[month-1]+" "+day+", "+year;
|
||
}
|
||
|
||
function stringToDate(sDate,format){
|
||
// \todo fonction a ecrire pour tenir compte de format
|
||
var sep="/";
|
||
var month=sDate.substring(0,sDate.indexOf(sep))
|
||
var day=sDate.substring(sDate.indexOf(sep)+1,sDate.indexOf(sep,sDate.indexOf(sep)+1))
|
||
var year=sDate.substring(sDate.lastIndexOf(sep)+1);
|
||
return new Date(year,month,day);
|
||
}
|
||
|
||
function mysqlstringToDate(sDate){
|
||
var sep="-";
|
||
var year=sDate.substring(0,sDate.indexOf(sep))
|
||
var month=sDate.substring(sDate.indexOf(sep)+1,sDate.indexOf(sep,sDate.indexOf(sep)+1))
|
||
var day=sDate.substring(sDate.lastIndexOf(sep)+1);
|
||
// alert(year+','+month+','+day);
|
||
return new Date(year,month,day);
|
||
}
|
||
|
||
|
||
|
||
//Returns an object given an id
|
||
function getObjectFromID(id){
|
||
var theObject;
|
||
if(document.getElementById)
|
||
theObject=document.getElementById(id);
|
||
else
|
||
theObject=document.all[id];
|
||
return theObject;
|
||
}
|
||
|
||
|
||
// This Function returns the Top position of an object
|
||
function getTop(theitem){
|
||
var offsetTrail = theitem;
|
||
var offsetTop = 0;
|
||
while (offsetTrail) {
|
||
offsetTop += offsetTrail.offsetTop;
|
||
offsetTrail = offsetTrail.offsetParent;
|
||
}
|
||
if (navigator.userAgent.indexOf("Mac") != -1 && typeof document.body.leftMargin != "undefined")
|
||
offsetLeft += document.body.TopMargin;
|
||
return offsetTop;
|
||
}
|
||
|
||
// This Function returns the Left position of an object
|
||
function getLeft(theitem){
|
||
var offsetTrail = theitem;
|
||
var offsetLeft = 0;
|
||
while (offsetTrail) {
|
||
offsetLeft += offsetTrail.offsetLeft;
|
||
offsetTrail = offsetTrail.offsetParent;
|
||
}
|
||
if (navigator.userAgent.indexOf("Mac") != -1 && typeof document.body.leftMargin != "undefined")
|
||
offsetLeft += document.body.leftMargin;
|
||
return offsetLeft;
|
||
}
|
||
|
||
function loadXMLDoc(url,readyStateFunction,async)
|
||
{
|
||
// branch for native XMLHttpRequest object
|
||
if (window.XMLHttpRequest) {
|
||
req = new XMLHttpRequest();
|
||
req.onreadystatechange = readyStateFunction;
|
||
req.open("GET", url, async);
|
||
req.send(null);
|
||
// branch for IE/Windows ActiveX version
|
||
} else if (window.ActiveXObject) {
|
||
req = new ActiveXObject("Microsoft.XMLHTTP");
|
||
if (req) {
|
||
if(readyStateFunction) req.onreadystatechange = readyStateFunction;
|
||
req.open("GET", url, async);
|
||
req.send();
|
||
}
|
||
}
|
||
}
|
||
|
||
function addEvent(obj, evType, fn){
|
||
if (obj.addEventListener){
|
||
obj.addEventListener(evType, fn, true);
|
||
return true;
|
||
} else if (obj.attachEvent){
|
||
var r = obj.attachEvent("on"+evType, fn);
|
||
return r;
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
|
||
function removeEvent(obj, evType, fn, useCapture){
|
||
if (obj.removeEventListener){
|
||
obj.removeEventListener(evType, fn, useCapture);
|
||
return true;
|
||
} else if (obj.detachEvent){
|
||
var r = obj.detachEvent("on"+evType, fn);
|
||
return r;
|
||
} else {
|
||
window.status=("Handler could not be removed");
|
||
}
|
||
}
|
||
|
||
function hideSelectBoxes() {
|
||
var brsVersion = parseInt(window.navigator.appVersion.charAt(0), 10);
|
||
if (brsVersion <= 6 && window.navigator.userAgent.indexOf("MSIE") > -1) {
|
||
for(var i = 0; i < document.all.length; i++) {
|
||
if(document.all[i].tagName)
|
||
if(document.all[i].tagName == "SELECT")
|
||
document.all[i].style.visibility="hidden";
|
||
}
|
||
}
|
||
}
|
||
|
||
function displaySelectBoxes() {
|
||
var brsVersion = parseInt(window.navigator.appVersion.charAt(0), 10);
|
||
if (brsVersion <= 6 && window.navigator.userAgent.indexOf("MSIE") > -1) {
|
||
for(var i = 0; i < document.all.length; i++) {
|
||
if(document.all[i].tagName)
|
||
if(document.all[i].tagName == "SELECT")
|
||
document.all[i].style.visibility="visible";
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
|
||
/***********************************************
|
||
* Cool DHTML tooltip script- <20> Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||
* This notice MUST stay intact for legal use
|
||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
|
||
***********************************************/
|
||
|
||
var offsetxpoint=-60 //Customize x offset of tooltip
|
||
var offsetypoint=20 //Customize y offset of tooltip
|
||
var ie=document.all
|
||
var ns6=document.getElementById && !document.all
|
||
var enabletip=false
|
||
if (ie||ns6)
|
||
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""
|
||
|
||
function ietruebody(){
|
||
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
|
||
}
|
||
|
||
function showtip(thetext){
|
||
if (ns6||ie){
|
||
tipobj.innerHTML=thetext
|
||
enabletip=true
|
||
return false
|
||
}
|
||
}
|
||
|
||
function positiontip(e){
|
||
if (enabletip){
|
||
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
|
||
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
|
||
//Find out how close the mouse is to the corner of the window
|
||
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
|
||
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20
|
||
|
||
var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000
|
||
|
||
//if the horizontal distance isn't enough to accomodate the width of the context menu
|
||
if (rightedge<tipobj.offsetWidth)
|
||
//move the horizontal position of the menu to the left by it's width
|
||
tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"
|
||
else if (curX<leftedge)
|
||
tipobj.style.left="5px"
|
||
else
|
||
//position the horizontal position of the menu where the mouse is positioned
|
||
tipobj.style.left=curX+offsetxpoint+"px"
|
||
|
||
//same concept with the vertical position
|
||
if (bottomedge<tipobj.offsetHeight)
|
||
tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"
|
||
else
|
||
tipobj.style.top=curY+offsetypoint+"px"
|
||
tipobj.style.visibility="visible"
|
||
}
|
||
}
|
||
|
||
function hidetip(){
|
||
if (ns6||ie){
|
||
enabletip=false
|
||
tipobj.style.visibility="hidden"
|
||
tipobj.style.left="-1000px"
|
||
tipobj.style.backgroundColor=''
|
||
tipobj.style.width=''
|
||
}
|
||
}
|
||
|
||
document.onmousemove=positiontip;
|
||
|