[minor] removed default filters for sales order and material request, fixed pos css

This commit is contained in:
Anand Doshi 2015-02-06 12:30:08 +05:30
parent a232c80d77
commit 9b30a8626c
3 changed files with 1 additions and 3 deletions

View File

@ -69,7 +69,7 @@
.pos-toolbar, .pos-bill-toolbar {
padding: 10px 0px;
border-bottom: 1px solid #d1d8dd;
height: 55px;
height: 51px;
}
.pos-item-toolbar .form-group {

View File

@ -1,7 +1,6 @@
frappe.listview_settings['Sales Order'] = {
add_fields: ["grand_total", "customer_name", "currency", "delivery_date", "per_delivered", "per_billed",
"status"],
filters: [["per_delivered", "<", 100]],
get_indicator: function(doc) {
if(doc.status==="Stopped") {
return [__("Stopped"), "red", "status,=,Stopped"];

View File

@ -1,6 +1,5 @@
frappe.listview_settings['Material Request'] = {
add_fields: ["material_request_type", "status", "per_ordered"],
filters: [["per_ordered", "<", 100]],
get_status: function(doc) {
if(doc.status=="Stopped") {
return [__("Stopped"), "red", "status,=,Stopped"];