Files
Kenneth Reitz 29b20bfff0 Import
2011-01-15 22:35:01 -05:00

297 lines
12 KiB
PHP

<div class="wrap shopp">
<h2><?php _e('Customers','Shopp'); ?></h2>
<form action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>" id="orders" method="get">
<div>
<input type="hidden" name="page" value="<?php echo $page; ?>" />
<input type="hidden" name="status" value="<?php echo $status; ?>" />
</div>
<br class="clear" />
<p id="post-search" class="search-box">
<input type="text" id="customers-search-input" class="search-input" name="s" value="<?php echo attribute_escape($s); ?>" />
<input type="submit" value="<?php _e('Search','Shopp'); ?>" class="button" />
</p>
<div class="tablenav">
<div class="alignleft actions">
<button type="submit" id="delete-button" name="deleting" value="customer" class="button-secondary"><?php _e('Delete','Shopp'); ?></button>
<span class="filtering">
<select name="range" id="range">
<?php echo menuoptions($ranges,$range,true); ?>
</select>
<span id="dates">
<div id="start-position" class="calendar-wrap"><input type="text" id="start" name="start" value="<?php echo $startdate; ?>" size="10" class="search-input selectall" /></div>
<small><?php _e('to','Shopp'); ?></small>
<div id="end-position" class="calendar-wrap"><input type="text" id="end" name="end" value="<?php echo $enddate; ?>" size="10" class="search-input selectall" /></div>
</span>
<button type="submit" id="filter-button" name="filter" value="customers" class="button-secondary"><?php _e('Filter','Shopp'); ?></button>
</span>
</div>
<?php if ($page_links) echo "<div class='tablenav-pages'>$page_links</div>"; ?>
<div class="clear"></div>
</div>
<?php if (SHOPP_WP27): ?><div class="clear"></div>
<?php else: ?><br class="clear" /><?php endif; ?>
<table class="widefat" cellspacing="0">
<thead>
<tr><?php shopp_print_column_headers('shopp_page_shopp-customers'); ?></tr>
</thead>
<?php if (SHOPP_WP27): ?>
<tfoot>
<tr><?php shopp_print_column_headers('shopp_page_shopp-customers',false); ?></tr>
</tfoot>
<?php endif; ?>
<?php if (sizeof($Customers) > 0): ?>
<tbody id="customers-table" class="list orders">
<?php
if (SHOPP_WP27) $hidden = get_hidden_columns('shopp_page_shopp-customers');
else $hidden = array();
$even = false;
foreach ($Customers as $Customer):
$CustomerName = (empty($Customer->firstname) && empty($Customer->lastname))?'('.__('no contact name','Shopp').')':"{$Customer->firstname} {$Customer->lastname}";
?>
<tr<?php if (!$even) echo " class='alternate'"; $even = !$even; ?>>
<th scope='row' class='check-column'><input type='checkbox' name='selected[]' value='<?php echo $Customer->id; ?>' /></th>
<td class="name column-name"><a class='row-title' href='<?php echo add_query_arg(array('page'=>$this->Admin->editcustomer,'id'=>$Customer->id),$Shopp->wpadminurl."admin.php"); ?>' title='<?php _e('Edit','Shopp'); ?> &quot;<?php echo $CustomerName; ?>&quot;'><?php echo $CustomerName; ?></a><?php echo !empty($Customer->company)?"<br />$Customer->company":""; ?></td>
<td class="login column-login<?php echo in_array('login',$hidden)?' hidden':''; ?>"><?php echo $Customer->user_login; ?></td>
<td class="email column-email<?php echo in_array('email',$hidden)?' hidden':''; ?>"><a href="mailto:<?php echo $Customer->email; ?>"><?php echo $Customer->email; ?></a></td>
<td class="location column-location<?php echo in_array('location',$hidden)?' hidden':''; ?>"><?php
$location = '';
$location = $Customer->city;
if (!empty($location) && !empty($Customer->state)) $location .= ', ';
$location .= $Customer->state;
if (!empty($location) && !empty($Customer->country))
$location .= ' &mdash; ';
$location .= $Customer->country;
echo $location;
?></td>
<td class="total column-total<?php echo in_array('total',$hidden)?' hidden':''; ?>"><?php echo $Customer->orders; ?> &mdash; <?php echo money($Customer->total); ?></td>
<td class="date column-date<?php echo in_array('date',$hidden)?' hidden':''; ?>"><?php echo date("Y/m/d",mktimestamp($Customer->created)); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
<?php else: ?>
<tbody><tr><td colspan="6"><?php _e('No','Shopp'); ?> <?php _e('customers, yet.','Shopp'); ?></td></tr></tbody>
<?php endif; ?>
</table>
</form>
<div class="tablenav">
<div class="alignleft actions">
<form action="<?php echo esc_url(add_query_arg(array_merge($_GET,array('lookup'=>'customerexport')),$Shopp->wpadminurl."admin.php")); ?>" id="log" method="post">
<button type="button" id="export-settings-button" name="export-settings" class="button-secondary"><?php _e('Export Options','Shopp'); ?></button>
<span id="export-settings" class="hidden">
<div id="export-columns" class="multiple-select">
<ul>
<li<?php $even = true; if ($even) echo ' class="odd"'; $even = !$even; ?>><input type="checkbox" name="selectall_columns" id="selectall_columns" /><label for="selectall_columns"><strong><?php _e('Select All','Shopp'); ?></strong></label></li>
<li<?php if ($even) echo ' class="odd"'; $even = !$even; ?>><input type="hidden" name="settings[customerexport_headers]" value="off" /><input type="checkbox" name="settings[customerexport_headers]" id="purchaselog_headers" value="on" /><label for="purchaselog_headers"><strong><?php _e('Include column headings','Shopp'); ?></strong></label></li>
<?php $even = true; foreach ($columns as $name => $label): ?>
<li<?php if ($even) echo ' class="odd"'; $even = !$even; ?>><input type="checkbox" name="settings[customerexport_columns][]" value="<?php echo $name; ?>" id="column-<?php echo $name; ?>" <?php echo in_array($name,$selected)?' checked="checked"':''; ?> /><label for="column-<?php echo $name; ?>" ><?php echo $label; ?></label></li>
<?php endforeach; ?>
</ul>
</div><br />
<select name="settings[customerexport_format]">
<?php echo menuoptions($exports,$formatPref,true); ?>
</select></span>
<button type="submit" id="download-button" name="download" value="export" class="button-secondary"><?php _e('Download','Shopp'); ?></button>
</div>
<?php if ($page_links) echo "<div class='tablenav-pages'>$page_links</div>"; ?>
<div class="clear"></div>
</div>
</div>
<div id="start-calendar" class="calendar"></div>
<div id="end-calendar" class="calendar"></div>
<script type="text/javascript">
helpurl = "<?php echo SHOPP_DOCS; ?>Managing Orders";
var lastexport = new Date(<?php echo date("Y,(n-1),j",$Shopp->Settings->get('customerexport_lastexport')); ?>);
jQuery(document).ready( function() {
var $=jQuery.noConflict();
$('#selectall').change( function() {
$('#customers-table th input').each( function () {
if (this.checked) this.checked = false;
else this.checked = true;
});
});
$('#delete-button').click(function() {
if (confirm("<?php echo addslashes(__('Are you sure you want to delete the selected customers?','Shopp')); ?>")) return true;
else return false;
});
function getDateInput(input) {
var match = false;
match = $(input).get(0).value.match(/^(\d{1,2}).{1}(\d{1,2}).{1}(\d{4})/);
if (match) return new Date(match[3],(match[1]-1),match[2]);
return false;
}
function formatDate (e) {
if (this.value == "") match = false;
if (this.value.match(/^(\d{6,8})/))
match = this.value.match(/(\d{1,2}?)(\d{1,2})(\d{4,4})$/);
else if (this.value.match(/^(\d{1,2}.{1}\d{1,2}.{1}\d{4})/))
match = this.value.match(/^(\d{1,2}).{1}(\d{1,2}).{1}(\d{4})/);
if (match) this.setDate(new Date(match[3],(match[1]-1),match[2]));
$('#start-calendar, #end-calendar').hide();
}
function setDate(date,calendar) {
$(this).val((date.getMonth()+1)+"/"+date.getDate()+"/"+date.getFullYear());
if (calendar) {
calendar.render(date.getMonth()+1,date.getDate(),date.getFullYear());
calendar.selection = date;
calendar.autoselect();
}
}
var start = $('#start');
var startdate = getDateInput(start);
var StartCalendar = new PopupCalendar($('#start-calendar'));
StartCalendar.scheduling = false;
if (startdate) {
StartCalendar.render(startdate.getMonth()+1,startdate.getDate(),startdate.getFullYear());
StartCalendar.selection = startdate;
StartCalendar.autoselect();
} else StartCalendar.render();
start.setDate = setDate;
start.get(0).setDate = setDate;
start.calendar = StartCalendar;
start.change(formatDate);
var end = $('#end');
var enddate = getDateInput(end);
var EndCalendar = new PopupCalendar($('#end-calendar'));
EndCalendar.scheduling = false;
if (enddate) {
EndCalendar.render(enddate.getMonth()+1,enddate.getDate(),enddate.getFullYear());
EndCalendar.selection = enddate;
EndCalendar.autoselect();
} else EndCalendar.render();
end.setDate = setDate;
end.get(0).setDate = setDate;
end.calendar = EndCalendar;
end.change(formatDate);
var scpos = $('#start-position').offset();
$('#start-calendar').hide()
.css({left:scpos.left,
top:scpos.top+$('#start-position').height()+10});
$('#start').click(function (e) {
$('#end-calendar').hide();
$('#start-calendar').toggle();
$(StartCalendar).change(function () {
$('#start').val((StartCalendar.selection.getMonth()+1)+"/"+
StartCalendar.selection.getDate()+"/"+
StartCalendar.selection.getFullYear());
});
});
var ecpos = $('#end-position').offset();
$('#end-calendar').hide()
.css({left:ecpos.left,
top:ecpos.top+$('#end-position input').height()+10});
$('#end').click(function (e) {
$('#start-calendar').hide();
$('#end-calendar').toggle();
$(EndCalendar).change(function () {
$('#end').val((EndCalendar.selection.getMonth()+1)+"/"+
EndCalendar.selection.getDate()+"/"+
EndCalendar.selection.getFullYear());
});
});
$('#range').change(function () {
if (this.selectedIndex == 0) {
start.val(''); end.val('');
$('#dates').addClass('hidden');
return;
} else $('#dates').removeClass('hidden');
var today = new Date();
var startdate = getDateInput($('#start'));
var enddate = getDateInput($('#end'));
if (!startdate) startdate = new Date(today.getFullYear(),today.getMonth(),today.getDate());
if (!enddate) enddate = new Date(today.getFullYear(),today.getMonth(),today.getDate());
today = new Date(today.getFullYear(),today.getMonth(),today.getDate());
switch($(this).val()) {
case 'week':
startdate.setDate(today.getDate()-today.getDay());
enddate = new Date(startdate.getFullYear(),startdate.getMonth(),startdate.getDate()+6);
break;
case 'month':
startdate.setDate(1);
enddate = new Date(startdate.getFullYear(),startdate.getMonth()+1,0);
break;
case 'quarter':
quarter = Math.floor(today.getMonth()/3);
startdate = new Date(today.getFullYear(),today.getMonth()-(today.getMonth()%3),1);
enddate = new Date(today.getFullYear(),startdate.getMonth()+3,0);
break;
case 'year':
startdate = new Date(today.getFullYear(),0,1);
enddate = new Date(today.getFullYear()+1,0,0);
break;
case 'yesterday':
startdate.setDate(today.getDate()-1);
enddate.setDate(today.getDate()-1);
break;
case 'lastweek':
startdate.setDate(today.getDate()-today.getDay()-7);
enddate.setDate((today.getDate()-today.getDay()+6)-7);
break;
case 'last30':
startdate.setDate(today.getDate()-30);
enddate.setDate(today.getDate());
break;
case 'last90':
startdate.setDate(today.getDate()-90);
enddate.setDate(today.getDate());
break;
case 'lastmonth':
startdate = new Date(today.getFullYear(),today.getMonth()-1,1);
enddate = new Date(today.getFullYear(),today.getMonth(),0);
break;
case 'lastquarter':
startdate = new Date(today.getFullYear(),(today.getMonth()-(today.getMonth()%3))-3,1);
enddate = new Date(today.getFullYear(),startdate.getMonth()+3,0);
break;
case 'lastyear':
startdate = new Date(today.getFullYear()-1,0,1);
enddate = new Date(today.getFullYear(),0,0);
break;
case 'lastexport':
startdate = lastexport;
enddate = today;
break;
case 'custom': break;
}
start.setDate(startdate,StartCalendar); end.setDate(enddate,EndCalendar);
}).change();
$('#export-settings-button').click(function () { $('#export-settings-button').hide(); $('#export-settings').removeClass('hidden'); });
$('#selectall_columns').change(function () {
if ($(this).attr('checked')) $('#export-columns input').not(this).attr('checked',true);
else $('#export-columns input').not(this).attr('checked',false);
});
<?php if (SHOPP_WP27): ?>
pagenow = 'shopp_page_shopp-customers';
columns.init(pagenow);
<?php endif; ?>
});
</script>