Menu

[r13]: / invoicing / listinvoices.php  Maximize  Restore  History

Download this file

159 lines (131 with data), 6.3 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
<?php
#Application name: PhpCollab
#Status page: 1
#Path by root: ../projects/listprojects.php
$checkSession = "true";
include_once('../includes/library.php');
if ($typeInvoices == "") {
$typeInvoices = "open";
}
if ($clientsFilter == "true" && $profilSession == "2") {
$teamMember = "false";
$tmpquery = "WHERE tea.member = '$idSession' AND org2.id = '$client'";
$memberTest = new request();
$memberTest->openTeams($tmpquery);
$comptMemberTest = count($memberTest->tea_id);
if ($comptMemberTest == "0") {
headerFunction("../clients/listclients.php?msg=blankClient&".session_name()."=".session_id());
} else {
$tmpquery = "WHERE org.id = '$client'";
}
} else if ($clientsFilter == "true" && $profilSession == "1") {
$tmpquery = "WHERE org.owner = '$idSession' AND org.id = '$client'";
} else {
$tmpquery = "WHERE org.id = '$client'";
}
$clientDetail = new request();
$clientDetail->openOrganizations($tmpquery);
$comptClientDetail = count($clientDetail->org_id);
if ($comptClientDetail == "0") {
headerFunction("../clients/listclients.php?msg=blankClient&".session_name()."=".session_id());
}
include('../themes/'.THEME.'/header.php');
$blockPage = new block();
$blockPage->openBreadcrumbs();
$blockPage->itemBreadcrumbs($blockPage->buildLink("../clients/listclients.php?",$strings["clients"],in));
$blockPage->itemBreadcrumbs($blockPage->buildLink("../clients/viewclient.php?id=".$clientDetail->org_id[0],$clientDetail->org_name[0],in));
$blockPage->itemBreadcrumbs($strings["invoices"]);
if ($typeInvoices == "open") {
$blockPage->itemBreadcrumbs($invoiceStatus[0]." | ".$blockPage->buildLink("../invoicing/listinvoices.php?client=$client&typeInvoices=sent",$invoiceStatus[1],in)." | ".$blockPage->buildLink("../invoicing/listinvoices.php?client=$client&typeInvoices=paid",$invoiceStatus[2],in));
} else if ($typeInvoices == "sent") {
$blockPage->itemBreadcrumbs($blockPage->buildLink("../invoicing/listinvoices.php?client=$client&typeInvoices=open",$invoiceStatus[0],in)." | ".$invoiceStatus[1]." | ".$blockPage->buildLink("../invoicing/listinvoices.php?client=$client&typeInvoices=paid",$invoiceStatus[2],in));
} else if ($typeInvoices == "paid") {
$blockPage->itemBreadcrumbs($blockPage->buildLink("../invoicing/listinvoices.php?client=$client&typeInvoices=open",$invoiceStatus[0],in)." | ".$blockPage->buildLink("../invoicing/listinvoices.php?client=$client&typeInvoices=sent",$invoiceStatus[1],in)." | ".$invoiceStatus[2]);
}
$blockPage->closeBreadcrumbs();
if ($msg != "") {
include('../includes/messages.php');
$blockPage->messagebox($msgLabel);
}
$blockPage->bornesNumber = "1";
$block1 = new block();
$block1->form = "saP";
$block1->openForm("../invoicing/listinvoices.php?client=$client&typeInvoices=$typeInvoices&".session_name()."=".session_id()."#".$block1->form."Anchor");
if ($typeInvoices == "open") {
$status = "0";
} else if ($typeInvoices == "sent") {
$status = "1";
} else if ($typeInvoices == "paid") {
$status = "2";
}
$block1->heading($strings["invoices"]." : ".$invoiceStatus[$status]);
$block1->openPaletteIcon();
if ($profilSession == "0" || $profilSession == "1" || $profilSession == "5") {
//$block1->paletteIcon(0,"add",$strings["add"]);
$block1->paletteIcon(1,"remove",$strings["delete"]);
}
$block1->paletteIcon(2,"info",$strings["view"]);
if ($profilSession == "0" || $profilSession == "1" || $profilSession == "5") {
$block1->paletteIcon(3,"edit",$strings["edit"]);
}
$block1->closePaletteIcon();
$block1->borne = $blockPage->returnBorne("1");
$block1->rowsLimit = "20";
$block1->sorting("invoices",$sortingUser->sor_invoices[0],"inv.id ASC",$sortingFields = array(0=>"inv.id",1=>"pro.name",2=>"inv.total_inc_tax",3=>"inv.date_sent",4=>"inv.published"));
$tmpquery = "WHERE pro.owner = '$idSession' ORDER BY pro.id";
$projectsTest = new request();
$projectsTest->openProjects($tmpquery);
$comptProjectsTest = count($projectsTest->pro_id);
if ($comptProjectsTest == "0") {
$listProjects = "false";
} else {
for ($i=0;$i<$comptProjectsTest;$i++) {
$projectsOk .= $projectsTest->pro_id[$i];
if ($comptProjectsTest-1 != $i) {
$projectsOk .= ",";
}
}
if ($projectsOk == "") {
$listProjects = "false";
} else {
$tmpquery = "WHERE inv.project IN($projectsOk) AND inv.active = '1' AND inv.status = '$status' ORDER BY $block1->sortingValue";
}
}
$block1->recordsTotal = compt($initrequest["invoices"]." ".$tmpquery);
$listInvoices = new request();
$listInvoices->openInvoices($tmpquery,$block1->borne,$block1->rowsLimit);
$comptListInvoices = count($listInvoices->inv_id);
if ($comptListInvoices != "0") {
$block1->openResults();
$block1->labels($labels = array(0=>$strings["id"],1=>$strings["project"],2=>$strings["total_inc_tax"],3=>$strings["date_invoice"],4=>$strings["published"]),"true");
for ($i=0;$i<$comptListInvoices;$i++) {
$idPublish = $listInvoices->inv_published[$i];
$block1->openRow();
$block1->checkboxRow($listInvoices->inv_id[$i]);
$block1->cellRow($blockPage->buildLink("../invoicing/viewinvoice.php?id=".$listInvoices->inv_id[$i],$listInvoices->inv_id[$i],in));
$block1->cellRow($blockPage->buildLink("../projects/viewproject.php?id=".$listInvoices->inv_project[$i],$listInvoices->inv_pro_name[$i],in));
$block1->cellRow($listInvoices->inv_total_inc_tax[$i]);
$block1->cellRow($listInvoices->inv_date_sent[$i]);
if ($sitePublish == "true") {
$block1->cellRow($statusPublish[$idPublish]);
}
$block1->closeRow();
}
$block1->closeResults();
$block1->bornesFooter("1",$blockPage->bornesNumber,"","typeProjects=$typeProjects");
} else {
$block1->noresults();
}
$block1->closeFormResults();
$block1->openPaletteScript();
if ($profilSession == "0" || $profilSession == "1" || $profilSession == "5") {
//$block1->paletteScript(0,"add","../projects/editproject.php?","true,false,false",$strings["add"]);
$block1->paletteScript(1,"remove","../invoicing/deleteinvoices.php?","false,true,false",$strings["delete"]);
}
$block1->paletteScript(2,"info","../invoicing/viewinvoice.php?","false,true,false",$strings["view"]);
if ($profilSession == "0" || $profilSession == "1" || $profilSession == "5") {
$block1->paletteScript(3,"edit","../invoicing/editinvoice.php?","false,true,false",$strings["edit"]);
}
$block1->closePaletteScript($comptListInvoices,$listInvoices->inv_id);
include('../themes/'.THEME.'/footer.php');
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.