Subversion Repositories SmartDukaan

Rev

Rev 23990 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23990 Rev 24033
Line 93... Line 93...
93
        success   : function(response) {
93
        success   : function(response) {
94
            $(trElement).find('div#model_name').html(response);
94
            $(trElement).find('div#model_name').html(response);
95
        }
95
        }
96
    });
96
    });
97
}
97
}
-
 
98
function updateModelPrice(trElement, itemId) {
-
 
99
	$.ajax({
-
 
100
		type      : 'GET',
-
 
101
		url       : '/Support/bulk-order!getPartnerPrice',
-
 
102
		data      : 'itemId=' + itemId,
-
 
103
		success   : function(response) {
-
 
104
			$(trElement).find('div#unit_price').html(response);
-
 
105
		}
-
 
106
	});
-
 
107
}