Subversion Repositories SmartDukaan

Rev

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

Rev 26826 Rev 27171
Line 2... Line 2...
2
	$(".good_inventory").live('click', function() {
2
	$(".good_inventory").live('click', function() {
3
		loadGoodInventory("main-content", "");
3
		loadGoodInventory("main-content", "");
4
	});
4
	});
5
 
5
 
6
	$(".catalog").live('click', function() {
6
	$(".catalog").live('click', function() {
7
		//clear pendingOrderId
7
		// clear pendingOrderId
8
		if(typeof pendingPO != "undefined") {
8
		if (typeof pendingPO != "undefined") {
9
			delete pendingPO;
9
			delete pendingPO;
10
			delete pendingPOCustomer;
10
			delete pendingPOCustomer;
11
		}
11
		}
12
		loadCatalog("main-content", "");
12
		loadCatalog("main-content", "");
13
	});
13
	});