102 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # ERPNext - web based ERP (http://erpnext.com)
 | |
| # Copyright (C) 2012 Web Notes Technologies Pvt Ltd
 | |
| # 
 | |
| # This program is free software: you can redistribute it and/or modify
 | |
| # it under the terms of the GNU General Public License as published by
 | |
| # the Free Software Foundation, either version 3 of the License, or
 | |
| # (at your option) any later version.
 | |
| # 
 | |
| # This program is distributed in the hope that it will be useful,
 | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| # GNU General Public License for more details.
 | |
| # 
 | |
| # You should have received a copy of the GNU General Public License
 | |
| # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
| from webnotes.model.doc import Document
 | |
| 
 | |
| # Existing SLE data
 | |
| #---------------------------
 | |
| 
 | |
| sle = [
 | |
| 	Document(
 | |
| 		fielddata = {
 | |
| 			'doctype': 'Stock Ledger Entry',
 | |
| 			'name': 'sle1',
 | |
| 			'posting_date': '2011-09-01',
 | |
| 			'posting_time': '12:00',
 | |
| 			'item_code': 'it',
 | |
| 			'warehouse': 'wh1',
 | |
| 			'actual_qty': 10,
 | |
| 			'incoming_rate': 100,
 | |
| 			'bin_aqat': 10,
 | |
| 			'valuation_rate': 100,
 | |
| 			'fcfs_stack': '',
 | |
| 			'stock_value': 1000,
 | |
| 			'is_cancelled': 'No'			
 | |
| 		}
 | |
| 	),
 | |
| 		Document(
 | |
| 		fielddata = {
 | |
| 			'doctype': 'Stock Ledger Entry',
 | |
| 			'name': 'sle2',
 | |
| 			'posting_date': '2011-09-01',
 | |
| 			'posting_time': '12:00',
 | |
| 			'item_code': 'it',
 | |
| 			'warehouse': 'wh1',
 | |
| 			'actual_qty': -5,
 | |
| 			'incoming_rate': 100,
 | |
| 			'bin_aqat': 5,
 | |
| 			'valuation_rate': 100,
 | |
| 			'fcfs_stack': '',
 | |
| 			'stock_value': 500,
 | |
| 			'is_cancelled': 'No'
 | |
| 		}
 | |
| 	),
 | |
| 	Document(
 | |
| 		fielddata = {
 | |
| 			'doctype': 'Stock Ledger Entry',
 | |
| 			'name': 'sle3',
 | |
| 			'posting_date': '2011-09-10',
 | |
| 			'posting_time': '15:00',
 | |
| 			'item_code': 'it',
 | |
| 			'warehouse': 'wh1',
 | |
| 			'actual_qty': 20,
 | |
| 			'incoming_rate': 200,
 | |
| 			'bin_aqat': 25,
 | |
| 			'valuation_rate': 180,
 | |
| 			'fcfs_stack': '',
 | |
| 			'stock_value': 4500,
 | |
| 			'is_cancelled': 'No'			
 | |
| 		}
 | |
| 	),
 | |
| 	Document(
 | |
| 		fielddata = {
 | |
| 			'doctype': 'Stock Ledger Entry',
 | |
| 			'name': 'sle4',
 | |
| 			'posting_date': '2011-09-15',
 | |
| 			'posting_time': '09:30',
 | |
| 			'item_code': 'it',
 | |
| 			'warehouse': 'wh1',
 | |
| 			'actual_qty': -5,
 | |
| 			'incoming_rate': 180,
 | |
| 			'bin_aqat': 20,
 | |
| 			'valuation_rate': 180,
 | |
| 			'fcfs_stack': '',
 | |
| 			'stock_value': 3600,
 | |
| 			'is_cancelled': 'No'			
 | |
| 		}
 | |
| 	)
 | |
| ]
 | |
| 
 | |
| bin = Document(
 | |
| 	fielddata = {
 | |
| 		'doctype': 'Bin',
 | |
| 		'name': 'bin01',
 | |
| 		'item_code': 'it',
 | |
| 		'warehouse': 'wh1',
 | |
| 		'actual_qty': 20,
 | |
| 	}
 | |
| )
 |