-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
71 lines (59 loc) · 2.08 KB
/
functions.php
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
<?php
use BigFish\PDF417\PDF417;
use BigFish\PDF417\Renderers\ImageRenderer;
use BigFish\PDF417\Renderers\SvgRenderer;
if(!isset($_SESSION)) session_start();
require_once 'functions-inv.php';
require_once 'functions-item.php';
/* Menu Buttons */
function show_all_locations($mySforceConnection){
echo "<a class='btnLocation' data-id='all' data-name='All Inventory' href='#'>View All</a>";
$query = "SELECT Id, Name from TrackIT__Location__c ORDER BY Name DESC";
$response = $mySforceConnection->query($query);
foreach ($response as $record) {
$sObject = new SObject($record);
echo "<a class='btnLocation' data-id='" . $sObject->Id . "' data-name='" . $sObject->fields->Name . "' href='#' >". $sObject->fields->Name ."</a>";
}
}
function get_location_list($mySforceConnection){
$query = "SELECT Id, Name from TrackIT__Location__c ORDER BY Name DESC";
$response = $mySforceConnection->query($query);
$arrayLocations = [];
foreach ($response as $record) {
$sObject = new SObject($record);
$arrayLocations[$sObject->Id] = $sObject->fields->Name;
}
return $arrayLocations;
}
function get_job_list($mySforceConnection){
$query = "SELECT Id, Name from Job__c WHERE Job_Status__c = 'Active' ORDER BY Name ASC";
$response = $mySforceConnection->query($query);
$arrayJobs = [];
foreach ($response as $record) {
$sObject = new SObject($record);
$arrayJobs[$sObject->Id] = $sObject->fields->Name;
}
return $arrayJobs;
}
/* Main Query Switch */
function main_query($mySforceConnection, $location_id, $type){
switch($type){
case 'inv':
query_inv_by_location($mySforceConnection, $location_id);
break;
case 'item':
query_item_by_location($mySforceConnection, $location_id);
break;
};
}
/**
*
*/
function write_file_to_server($records, $filename){
$handle = fopen($filename, "w");
foreach ((array) $records as $record) {
$strLine = implode('| ', $record) . PHP_EOL;
fwrite($handle, $strLine);
}
fclose($handle);
}