Subversion Repositories SmartDukaan

Rev

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

Rev 29635 Rev 32771
Line 1... Line 1...
1
<div class="row">
1
<div class="row">
2
		     <div class="col-lg-5">
2
		     <div class="col-lg-5">
3
		     	<table class="table table-striped table-condensed table-bordered" id="debit-notes">
3
		     	<table class="table table-striped table-condensed table-bordered" id="debit-notes">
4
	    			<thead>
4
	    			<thead>
5
			            <tr>
5
			            <tr>
6
							<th>Id</th>
6
							<th>#springMessage("vuewdebitnotes.id")</th>
7
							#if($isAdmin)
7
							#if($isAdmin)
8
							<th>Raised by Party</th>
8
							<th>Raised by Party</th>
9
							#end
9
							#end
10
							<th>Note Number</th>
10
							<th>#springMessage("vuewdebitnotes.notenumber")</th>
11
							<!--<th>For Warehouse</th>-->
11
							<!--<th>For Warehouse</th>-->
12
							<th>Invoice Number</th>
12
							<th>#springMessage("vuewdebitnotes.invoicenumber")</th>
13
							<th>Created On</th>
13
							<th>#springMessage("vuewdebitnotes.createdon")</th>
14
			            </tr>
14
			            </tr>
15
			        </thead>
15
			        </thead>
16
					<tbody>
16
					<tbody>
17
					#foreach( $debitNoteId in $debitNotesMap.keySet())
17
					#foreach( $debitNoteId in $debitNotesMap.keySet())
18
					#if($inventoryItemsMap.get($dnReturnItemsMap.get($debitNoteId).get(0).getInventoryItemId()).getPurchase().getPurchaseReference())
18
					#if($inventoryItemsMap.get($dnReturnItemsMap.get($debitNoteId).get(0).getInventoryItemId()).getPurchase().getPurchaseReference())
Line 34... Line 34...
34
		     </div>
34
		     </div>
35
			<div class="col-lg-7" id="debit-note-items">
35
			<div class="col-lg-7" id="debit-note-items">
36
				<table class="table table-striped table-condensed table-bordered">
36
				<table class="table table-striped table-condensed table-bordered">
37
	    			<thead>
37
	    			<thead>
38
			            <tr>
38
			            <tr>
39
							<th>Item Id</th>
39
							<th>#springMessage("vuewdebitnotes.itemid")</th>
40
							<th>Description</th>
40
							<th>#springMessage("vuewdebitnotes.description")</th>
41
							<th>Serial Number</th>
41
							<th>#springMessage("vuewdebitnotes.serialnumber")</th>
42
			            </tr>
42
			            </tr>
43
			        </thead>
43
			        </thead>
44
					<tbody>
44
					<tbody>
45
						#foreach( $debitNoteId in $dnReturnItemsMap.keySet() )
45
						#foreach( $debitNoteId in $dnReturnItemsMap.keySet() )
46
						#foreach( $prItem in $dnReturnItemsMap.get($debitNoteId) )
46
						#foreach( $prItem in $dnReturnItemsMap.get($debitNoteId) )