Subversion Repositories SmartDukaan

Rev

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

Rev 26830 Rev 26831
Line 386... Line 386...
386
	    customerId = customer.customerId;
386
	    customerId = customer.customerId;
387
	    $("div.billinginfo").show();
387
	    $("div.billinginfo").show();
388
	    trs = [];
388
	    trs = [];
389
	    if(customer.addresses != null) {
389
	    if(customer.addresses != null) {
390
	    	for(address of customer.addresses) {
390
	    	for(address of customer.addresses) {
391
	    		if(typeof pendingPO !=undefined) {
391
	    		if(typeof pendingPO !="undefined") {
392
	    			if(pendingPO.customerAddressId==address.id) {
392
	    			if(pendingPO.customerAddressId==address.id) {
393
	    				trs.push(getAddressTr(address));
393
	    				trs.push(getAddressTr(address));
394
	    			}
394
	    			}
395
	    		} else {
395
	    		} else {
396
	    			trs.push(getAddressTr(address));
396
	    			trs.push(getAddressTr(address));