| option explicit |
| |
| dim strPrompt |
| dim intFunction |
| dim strChoices |
| dim objShell |
| dim fso |
| dim setupfile |
| const ForReading=1 |
| dim i,item |
| |
| strPrompt="Choose a function from the table:" & vbNewLine &vbNewLine &_ |
| "1. Generate CIS Pre-BOM." & vbNewLine &_ |
| "2. Compare CIS and PDM BOMs." & vbNewLine &_ |
| "3. Generate HDL Pre-BOM." & vbNewLine &_ |
| "4. Compare HDL and PDM BOMs." & vbNewLine &_ |
| "5. Compare two PDM BOMs." & vbNewLine |
| strChoices="12345" |
| set objShell=CreateObject("WScript.Shell") |
| set fso=CreateObject("scripting.FileSystemObject") |
| setupfile=objShell.CurrentDirectory & "\setup.ini" |
| |
| |
| do |
| intFunction=InputBox(strPrompt,"Function Table",1) |
| if intFunction="" then WScript.Quit |
| loop until InStr(strChoices,Left(intFunction,1)) |
| select case CInt(Left(intFunction,1)) |
| case 1 |
| call preBOM(1) |
| case 2 |
| call Compare(1) |
| case 3 |
| call preBOM(2) |
| case 4 |
| call Compare(2) |
| case 5 |
| call Compare(3) |
| case else |
| MsgBox "Runtime error, program will exit.", _ |
| vbOKOnly+vbExclamation,"error" |
| WScript.Quit |
| end select |
| |
| |
| |
| |
| |
| sub preBOM(CISorHDL) |
| dim StartLine,PartNumber,Quantity, _ |
| IsPOP,NPOP,HeaderLine,Location, _ |
| SmdPN,DipPN,PcbPN |
| dim dictSetup |
| dim arrCheckSetup |
| dim bomFile |
| dim dictParts |
| |
| dim strBegin |
| dim strEnd |
| |
| |
| if CISorHDL=1 then |
| strBegin="<CIS_preBOM>" |
| strEnd="</CIS_preBOM>" |
| elseif CISorHDL=2 then |
| strBegin="<HDL_preBOM>" |
| strEnd="</HDL_preBOM>" |
| end if |
| |
| |
| arrCheckSetup=Array("StartLine","PartNumber","Quantity","IsPOP", _ |
| "Location","NPOP","HeaderLine","SmdPN","DipPN","PcbPN") |
| set dictSetup=ReadSetup(setupfile,strBegin,strEnd) |
| for each item in arrCheckSetup |
| if not dictSetup.Exists(item) then |
| MsgBox "No """ & item & """ value found in " &_ |
| setupfile & ", please check your file.", _ |
| vbOkOnly+vbCritical,"Error" |
| end if |
| Execute(item & "=dictSetup.item(""" & item & """)") |
| next |
| |
| |
| |
| bomFile=BrowseForFile() |
| if bomFile="" then |
| WScript.Quit |
| end if |
| |
| |
| set dictParts=CreateObject("scripting.Dictionary") |
| set dictParts=ReadTextParts(bomFile,HeaderLine,StartLine,PartNumber,Quantity,IsPOP,Location,NPOP,",") |
| |
| |
| call WriteToExcel(dictParts,SmdPN,DipPN,PcbPN) |
| end sub |
| |
| |
| |
| sub Compare(CompareType) |
| dim StartLine,PartNumber,Quantity, _ |
| IsPOP,NPOP,HeaderLine,Location,ExcelHeaderLine, _ |
| ExcelStartLine,ExcelPartNumber,_ |
| ParentPN,ExcelQuantity, _ |
| ExcelLocation,ExcelLevel |
| dim dictSetup |
| dim arrCheckSetup |
| dim FirstFile |
| dim SecondFile |
| dim dictFirstParts |
| dim dictSecondParts |
| |
| dim strBegin |
| dim strEnd |
| dim strPrompt |
| |
| |
| if CompareType=1 then |
| strBegin="<CIS_PDM>" |
| strEnd="</CIS_PDM>" |
| arrCheckSetup=Array("StartLine","PartNumber","Quantity","IsPOP", _ |
| "Location","NPOP","HeaderLine","ExcelHeaderLine", _ |
| "ExcelStartLine","ExcelPartNumber","ParentPN","ExcelQuantity", _ |
| "ExcelLocation","ExcelLevel") |
| elseif CompareType=2 then |
| strBegin="<HDL_PDM>" |
| strEnd="</HDL_PDM>" |
| arrCheckSetup=Array("StartLine","PartNumber","Quantity","IsPOP", _ |
| "Location","NPOP","HeaderLine","ExcelHeaderLine", _ |
| "ExcelStartLine","ExcelPartNumber","ParentPN","ExcelQuantity", _ |
| "ExcelLocation","ExcelLevel") |
| elseif CompareType=3 then |
| strBegin="<twoPDM>" |
| strEnd="</twoPDM>" |
| arrCheckSetup=Array("ExcelHeaderLine", _ |
| "ExcelStartLine","ExcelPartNumber","ParentPN","ExcelQuantity", _ |
| "ExcelLocation","ExcelLevel") |
| else |
| Err.Raise 104,"BomKit check error.","BomKit doesn't support this kind of comparison: " & CompareType |
| end if |
| |
| |
| set dictSetup=ReadSetup(setupfile,strBegin,strEnd) |
| for each item in arrCheckSetup |
| if not dictSetup.Exists(item) then |
| MsgBox "No """ & item & """ value found in " &_ |
| setupfile & ", please check your file.", _ |
| vbOkOnly+vbCritical,"Error" |
| end if |
| Execute(item & "=dictSetup.item(""" & item & """)") |
| next |
| |
| |
| |
| select case CompareType |
| case 1 |
| strPrompt="You are going to choose the BOM file generated by Allegro CIS." |
| case 2 |
| strPrompt="You are going to choose the BOM file generated by Allegro HDL." |
| case 3 |
| strPrompt="You are going to choose the excel file downloaded from PDM." |
| end select |
| MsgBox strPrompt,vbInformation,"Note" |
| FirstFile=BrowseForFile() |
| if FirstFile="" then |
| WScript.Quit |
| end if |
| |
| set dictFirstParts=CreateObject("scripting.Dictionary") |
| set dictSecondParts=CreateObject("scripting.Dictionary") |
| if CompareType=1 or CompareType=2 then |
| set dictFirstParts=ReadTextParts(FirstFile,HeaderLine,StartLine,PartNumber,Quantity,IsPOP,Location,NPOP,",") |
| else |
| set dictFirstParts=ReadExcelParts(FirstFile,ExcelHeaderLine,ExcelStartLine,ExcelPartNumber, _ |
| ParentPN,ExcelQuantity,ExcelLocation,ExcelLevel) |
| end if |
| |
| strPrompt="You are going to choose the excel file downloaded from PDM." |
| MsgBox strPrompt,vbInformation,"Note" |
| SecondFile=BrowseForFile() |
| if SecondFile="" then |
| WScript.Quit |
| end if |
| |
| set dictSecondParts=ReadExcelParts(SecondFile,ExcelHeaderLine,ExcelStartLine,ExcelPartNumber, _ |
| ParentPN,ExcelQuantity,ExcelLocation,ExcelLevel) |
| |
| dim arrCompare |
| arrCompare=CompareDicts(dictFirstParts,dictSecondParts) |
| |
| dim fso,objTextStream,objShell,re |
| set re=new RegExp |
| re.Pattern="[\n\r]+$" |
| set fso=CreateObject("scripting.FileSystemObject") |
| set objShell=CreateObject("WScript.Shell") |
| set objTextStream=fso.OpenTextFile(objShell.CurrentDirectory & "\compare.txt",2,true) |
| objTextStream.WriteLine "Comparision results generated by BomKit" |
| objTextStream.WriteLine Date & " " & Time & vbNewLine |
| objTextStream.WriteLine "Below items exist only in " & FirstFile & vbNewLine & String(80,"=") |
| objTextStream.Write re.Replace(arrCompare(0),"") & vbNewLine & String(80,"=") & vbNewLine & vbNewLine & vbNewLine |
| objTextStream.WriteLine "Below items exist only in " & SecondFile & vbNewLine & String(80,"=") |
| objTextStream.Write re.Replace(arrCompare(1),"") & vbNewLine & String(80,"=") & vbNewLine & vbNewLine & vbNewLine |
| objTextStream.WriteLine "Below are mismatched items" & vbNewLine & String(80,"=") |
| objTextStream.Write re.Replace(arrCompare(2),"") & vbNewLine & String(80,"=") & vbNewLine & vbNewLine & vbNewLine |
| objTextStream.Close |
| objShell.Run(objShell.CurrentDirectory & "\compare.txt") |
| end sub |
| |
| |
| function BrowseForFile() |
| dim shell : set shell = CreateObject("WScript.Shell") |
| dim fso : set fso = CreateObject("Scripting.FileSystemObject") |
| dim tempFolder : set tempFolder = fso.GetSpecialFolder(2) |
| dim tempName : tempName = fso.GetTempName() |
| dim tempFile : set tempFile = tempFolder.CreateTextFile(tempName & ".hta") |
| tempFile.Write _ |
| "<html>" & _ |
| "<head>" & _ |
| "<title>Browse</title>" & _ |
| "</head>" & _ |
| "<body>" & _ |
| "<input type='file' id='f' />" & _ |
| "<script type='text/javascript'>" & _ |
| "var f = document.getElementById('f');" & _ |
| "f.click();" & _ |
| "var shell = new ActiveXObject('WScript.Shell');" & _ |
| "shell.RegWrite('HKEY_CURRENT_USER\\Volatile Environment\\MsgResp', f.value);" & _ |
| "window.close();" & _ |
| "</script>" & _ |
| "</body>" & _ |
| "</html>" |
| tempFile.Close |
| shell.Run tempFolder & "\" & tempName & ".hta", 0, true |
| BrowseForFile = shell.RegRead("HKEY_CURRENT_USER\Volatile Environment\MsgResp") |
| shell.RegDelete "HKEY_CURRENT_USER\Volatile Environment\MsgResp" |
| end function |
| |
| |
| |
| |
| function ReadSetup(strSetupfile,strBegin,strEnd) |
| dim objTextStream,strLine,IsReading,fso |
| const ForReading=1 |
| dim re |
| dim dictSetup,arrLine |
| |
| set fso=CreateObject("scripting.FileSystemObject") |
| set objTextStream=fso.OpenTextFile(strSetupfile,ForReading,false,-2) |
| set dictSetup=CreateObject("scripting.Dictionary") |
| IsReading=false |
| strLine=Empty |
| set re=new RegExp |
| re.Pattern="=([^\t]+)\t+'.*$" |
| do |
| strLine=objTextStream.ReadLine |
| if UCase(strLine)=UCase(strEnd) then IsReading=false |
| if IsReading then |
| strLine=re.Replace(strLine,"=$1") |
| arrLine=split(strLine,"=") |
| dictSetup.Add arrLine(0),arrLine(1) |
| end if |
| if UCase(strLine)=UCase(strBegin) then IsReading=true |
| loop until strLine=strEnd or objTextStream.AtEndOfStream |
| objTextStream.Close |
| set ReadSetup=dictSetup |
| end function |
| |
| |
| |
| |
| sub WriteSetup(strSetupfile,strBegin,strEnd,strKey,strValue) |
| dim objTextStream,strLine,IsReading,arrLine,fso,item |
| const ForReading=1,ForWriting=2 |
| dim re |
| |
| set fso=CreateObject("scripting.FileSystemObject") |
| set objTextStream=fso.OpenTextFile(strSetupFile,ForReading,false,-2) |
| strLine=objTextStream.ReadAll |
| objTextStream.Close |
| arrLine=Split(strLine,vbNewLine) |
| set objTextStream=fso.OpenTextFile(strSetupFile,ForWriting) |
| IsReading=false |
| set re=new RegExp |
| re.Pattern="^" & strKey & "=[^\t]*(\t+'.*$)" |
| re.IgnoreCase=true |
| for each item in arrLine |
| strLine=item |
| if UCase(item)=UCase(strEnd) then IsReading=false |
| if IsReading and UCase(Left(strLine,Len(strKey)))=UCase(strKey) then |
| strLine=re.Replace(strLine,strKey & "=" & strValue & "$1") |
| end if |
| if UCase(item)=UCase(strBegin) then IsReading=true |
| objTextStream.WriteLine strLine |
| next |
| objTextStream.Close |
| end sub |
| |
| |
| |
| |
| |
| |
| |
| |
| function ReadTextParts(strFile,HeaderLine,StartLine,PartNumber,Quantity,IsPOP,Location,strNPOP,chrSepar) |
| dim fso,objTextStream,arrLine,strLine,i,dictParts,strPrompt |
| set dictParts=CreateObject("scripting.Dictionary") |
| set fso=CreateObject("scripting.FileSystemObject") |
| set objTextStream=fso.OpenTextFile(strFile,ForReading,false,-2) |
| |
| |
| for i=2 to HeaderLine |
| objTextStream.SkipLine |
| next |
| strLine=objTextStream.ReadLine |
| for each item in Array(PartNumber,Quantity,IsPOP,Location) |
| if not IncludesItemOf(strLine,item) then |
| MsgBox "BOM file format check failed." & vbNewLine &_ |
| "Expect """ & Join(Split(item,","),""" or """) & """ on line " & HeaderLine &_ |
| " of " & strFile & "." & vbNewLine &vbNewLine &_ |
| "Solutions:" & vbNewLine &_ |
| "1.Check value of ""HeaderLine"" in setup.ini;" &_ |
| vbNewLine & "2.Check your bom file " & strFile & ".", _ |
| vbOkOnly+vbCritical,"Error" |
| WScript.Quit |
| end if |
| next |
| |
| |
| |
| dim dictColumn |
| set dictColumn=CreateObject("scripting.Dictionary") |
| arrLine=split(strLine,vbTab) |
| for i=0 to UBound(arrLine) |
| select case arrLine(i) |
| case PartNumber |
| dictColumn.Add PartNumber,i |
| case Quantity |
| dictColumn.Add Quantity,i |
| case Location |
| dictColumn.Add Location,i |
| case else |
| if IncludesItemOf(arrLine(i),IsPOP) then |
| if not dictColumn.Exists("NPOP") then |
| dictColumn.Add "NPOP",Cstr(i) |
| else |
| dictColumn.Item("NPOP")=dictColumn.Item("NPOP") & "," & CStr(i) |
| end if |
| end if |
| end select |
| next |
| |
| |
| for i=1 to StartLine-HeaderLine-1 |
| objTextStream.SkipLine |
| next |
| |
| |
| do until objTextStream.AtEndOfStream |
| strLine=objTextStream.ReadLine |
| dim currentPN |
| dim objPart |
| arrLine=split(strLine,vbTab) |
| if not PartIsNPOP(arrLine,dictColumn.Item("NPOP"),strNPOP) then |
| |
| if not arrLine(dictColumn.item(PartNumber))="" then |
| |
| currentPN=arrLine(dictColumn.item(PartNumber)) |
| if not dictParts.Exists(currentPN) then |
| |
| set objPart=new part |
| objPart.PartNumber=arrLine(dictColumn.item(PartNumber)) |
| objPart.Quantity=arrLine(dictColumn.item(Quantity)) |
| objPart.Location=arrLine(dictColumn.item(Location)) |
| dictParts.Add currentPN,objPart |
| else |
| |
| dictParts.item(currentPN).Quantity= _ |
| dictParts.item(currentPN).Quantity+ _ |
| arrLine(dictColumn.item(Quantity)) |
| dictParts.item(currentPN).Location= _ |
| dictParts.item(currentPN).Location & "," & _ |
| arrLine(dictColumn.item(Location)) |
| end if |
| else |
| |
| |
| if not IsEmpty(currentPN) then |
| dictParts.item(currentPN).Location= _ |
| dictParts.item(currentPN).Location &_ |
| arrLine(dictColumn.item(Location)) |
| end if |
| end if |
| else |
| |
| currentPN=Empty |
| end if |
| loop |
| |
| |
| |
| dim strAllLocations |
| for each item in dictParts.Items |
| if item.IsBadPN() then |
| dictParts.Remove(item.PartNumber) |
| else |
| strAllLocations=strAllLocations & "," & item.Location |
| end if |
| next |
| dim dictRepeat |
| set dictRepeat=CreateObject("scripting.Dictionary") |
| set dictRepeat=CheckRepeat(strAllLocations,",") |
| if dictRepeat.Count>0 then |
| strPrompt=Empty |
| strPrompt="BomKit detects repeated locations:" & vbNewLine &_ |
| vbNewLine & "Location" & vbTab & vbTab & "Repeat Times" & vbNewLine |
| for each item in dictRepeat.Keys |
| strPrompt=strPrompt &_ |
| item & vbTab & vbTab & dictRepeat.Item(item) & vbNewLine |
| next |
| MsgBox strPrompt,vbOkOnly+vbCritical,"Error" |
| WScript.Quit |
| end if |
| |
| |
| strPrompt=Empty |
| for each item in dictParts.Items |
| if not item.CheckQty then |
| strPrompt=strPrompt & item.PartNumber & String(2,vbTab) &_ |
| item.Quantity & vbTab & item.RealQty() & vbNewLine |
| item.CorrectQty |
| end if |
| next |
| if not IsEmpty(strPrompt) then |
| strPrompt="BomKit detects wrong quantities, modified automatically:" & vbNewLine &_ |
| vbNewLine & "Part number" & String(2,vbTab) & "Read" & vbTab &_ |
| "Real" & vbNewLine & strPrompt |
| MsgBox strPrompt,vbInformation,"Wrong Quantity" |
| end if |
| |
| objTextStream.Close |
| set ReadTextParts=dictParts |
| end function |
| |
| |
| |
| function CheckRepeat(strTest,strSepar) |
| dim strToCheck |
| strToCheck=strTest |
| if not Left(strToCheck,1)=strSepar then strToCheck=strSepar & strToCheck |
| if not Right(strToCheck,1)=strSepar then strToCheck=strToCheck & strSepar |
| dim dictRepeat |
| set dictRepeat=CreateObject("scripting.Dictionary") |
| for each item in split(strToCheck,strSepar) |
| if InStr(strToCheck,strSepar & item & strSepar)<> _ |
| InStrRev(strToCheck,strSepar & item & strSepar) then |
| if dictRepeat.Exists(item) then |
| dictRepeat.Item(item)=dictRepeat.Item(item)+1 |
| else |
| dictRepeat.Add item,1 |
| end if |
| end if |
| next |
| set CheckRepeat=dictRepeat |
| end function |
| |
| |
| function IncludesItemOf(strA,strB) |
| IncludesItemOf=false |
| dim item,strLine |
| strLine="," & Join(Split(strA,vbTab),",") & "," |
| for each item in Split(strB,",") |
| if Instr(strLine,"," & item & ",") then |
| IncludesItemOf=true |
| exit for |
| end if |
| next |
| end function |
| |
| |
| |
| |
| function PartIsNPOP(arrLine,NPOPColumns,strNPOP) |
| dim item |
| PartIsNPOP=false |
| for each item in Split(NPOPColumns,",") |
| if IncludesItemOf(arrLine(CInt(item)),strNPOP) then |
| PartIsNPOP=true |
| exit for |
| end if |
| next |
| end function |
| |
| |
| |
| sub WriteToExcel(dictParts,SmdPN,DipPN,PcbPN) |
| dim strInput |
| dim arrInput |
| dim arrLine |
| |
| strInput=InputBox("Please enter SMD/DIP/PCB part numbers, separated by semicolons. Like:" &_ |
| vbNewLine & vbNewLine &_ |
| "55.5R101.S01G;55.5R101.D01G;48.5R101.0SA", _ |
| "Enter PNs",SmdPN & ";" & DipPN & ";" & PcbPN) |
| if strInput="" then WScript.Quit |
| arrInput=Split(strInput,";") |
| dim newSmdPN,newDipPN,newPcbPN |
| newSmdPN=UCase(Trim(arrInput(0))) |
| newDipPN=UCase(Trim(arrInput(1))) |
| newPcbPN=UCase(Trim(arrInput(2))) |
| if not UCase(SmdPN & DipPN & PcbPN)=(newSmdPN & newDipPN & newPcbPN) then |
| |
| SmdPN=newSmdPN |
| DipPN=newDipPN |
| PcbPN=newPcbPN |
| call WriteSetup(setupfile,strBegin,strEnd,"SmdPN",SmdPN) |
| call WriteSetup(setupfile,strBegin,strEnd,"DipPN",DipPN) |
| call WriteSetup(setupfile,strBegin,strEnd,"PcbPN",PcbPN) |
| end if |
| |
| |
| dim objExcel,objWorkbook,objWorksheet |
| set objExcel=CreateObject("Excel.Application") |
| set objWorkbook=objExcel.Workbooks.Add |
| set objWorksheet=objWorkbook.Sheets(1) |
| objExcel.Visible=True |
| |
| arrLine=Array("Assembly P/N","Assembly Class","Part Number", _ |
| "Priority","Mount Type","Quantity","Location") |
| for i=1 to UBound(arrLine)+1 |
| objWorksheet.Cells(1,i)=arrLine(i-1) |
| next |
| |
| dim row,IfExistsRed |
| row=2 |
| IfExistsRed=false |
| for each item in dictParts.Items |
| objWorksheet.Cells(row,1)=SmdPN |
| objWorksheet.Cells(row,2)="EE" |
| objWorksheet.Cells(row,3)=item.PartNumber |
| objWorksheet.Cells(row,4)=1 |
| objWorksheet.Cells(row,5)="S" |
| objWorksheet.Cells(row,6)=item.Quantity |
| objWorksheet.Cells(row,7)=item.Location |
| if item.PNmayDip then |
| |
| IfExistsRed=true |
| objWorksheet.Cells(row,1).Interior.ColorIndex=3 |
| objWorksheet.Cells(row,5).Interior.ColorIndex=3 |
| end if |
| row=row+1 |
| next |
| |
| dim objRange,objC1 |
| const Ascending=1,Descending=2,HeaderLineYes=1 |
| set objRange=objWorksheet.UsedRange |
| set objC1=objExcel.Range("C1") |
| objRange.Sort objC1,Ascending,,,,,,HeaderLineYes |
| |
| objWorksheet.Rows(2).Insert |
| arrLine=Array(SmdPN,"EE",PcbPN, _ |
| 1,"S","1") |
| for i=1 to UBound(arrLine)+1 |
| objWorksheet.Cells(2,i)=arrLine(i-1) |
| objWorksheet.Cells(2,i).Font.ColorIndex=5 |
| next |
| objWorksheet.Rows(2).Insert |
| arrLine=Array(DipPN,"EE",SmdPN, _ |
| 1,"D","1") |
| for i=1 to UBound(arrLine)+1 |
| objWorksheet.Cells(2,i)=arrLine(i-1) |
| objWorksheet.Cells(2,i).Font.ColorIndex=5 |
| next |
| |
| objRange.EntireColumn.AutoFilter |
| |
| objRange.EntireColumn.AutoFit() |
| if IfExistsRed then MsgBox "pre-BOM has been generated. Please check those values marked by red." |
| end sub |
| |
| |
| |
| |
| |
| function ReadExcelParts(strFile,HeaderLine,StartLine,PartNumber,ParentPN,Quantity,Location,Level) |
| dim objExcel,objWorkbook,objWorksheet |
| set objExcel=CreateObject("Excel.Application") |
| set objWorkbook=objExcel.Workbooks.Open(strFile) |
| set objWorksheet=objWorkbook.Sheets(1) |
| dim dictParts |
| set dictParts=CreateObject("scripting.Dictionary") |
| |
| |
| dim dictColumn,i,item,found |
| set dictColumn=CreateObject("scripting.Dictionary") |
| for each item in Array(PartNumber,ParentPN,Quantity,Location,Level) |
| found=false |
| for i=1 to objWorkSheet.UsedRange.Columns.Count |
| if UCase(objWorksheet.Cells(HeaderLine,i))=UCase(item) then |
| found=true |
| dictColumn.Add item,i |
| exit for |
| end if |
| next |
| if found=false then |
| MsgBox "Excel BOM format check failed." & vbNewLine &_ |
| "Expect """ & item & """ on line " & HeaderLine &_ |
| " of " & strFile & "." & vbNewLine &vbNewLine &_ |
| "Solutions:" & vbNewLine &_ |
| "1.Check value of ""HeaderLine"" in setup.ini;" &_ |
| vbNewLine & "2.Check your Excel file " & strFile & ".", _ |
| vbOkOnly+vbCritical,"Error" |
| WScript.Quit |
| end if |
| next |
| |
| |
| dim objPart,PreviousPN |
| for i=StartLine to objWorkSheet.UsedRange.Rows.Count |
| if Instr(UCase("12A"),UCase(objWorksheet.Cells(i,dictColumn.Item(Level)))) then |
| |
| set objPart=new part |
| objPart.PartNumber=objWorksheet.Cells(i,dictColumn.item(PartNumber)) |
| objPart.Quantity=objWorksheet.Cells(i,dictColumn.item(Quantity)) |
| objPart.Location=objWorksheet.Cells(i,dictColumn.item(Location)) |
| objPart.strSepar=" " |
| objPart.ParentPN=objWorksheet.Cells(i,dictColumn.item(ParentPN)) |
| objPart.boolIsSecond=(UCase(objWorksheet.Cells(i,dictColumn.item(Level)))="A") |
| if objPart.boolIsSecond then |
| |
| objPart.MainSource=PreviousPN |
| dictParts.Add objPart.PartNumber & "-" & objPart.MainSource,objPart |
| else |
| |
| dictParts.Add objPart.PartNumber,objPart |
| PreviousPN=objPart.PartNumber |
| end if |
| end if |
| next |
| objExcel.Quit |
| Set ReadExcelParts=dictParts |
| end function |
| |
| |
| |
| |
| |
| |
| function CompareDicts(dictFirstParts,dictSecondParts) |
| dim arrCompare,dictCompared,item |
| arrCompare=Array("","","") |
| |
| dim arrLack |
| for each item in dictFirstParts.Keys |
| if dictSecondParts.Exists(item) then |
| |
| if not dictFirstParts.Item(item).boolIsSecond then |
| |
| arrLack=CompareLocation( _ |
| Split(dictFirstParts.Item(item).Location, _ |
| dictFirstParts.Item(item).strSepar), _ |
| Split(dictSecondParts.Item(item).Location, _ |
| dictSecondParts.Item(item).strSepar)) |
| if not Join(arrLack)=" " then |
| |
| arrCompare(2)=arrCompare(2) & "Part Number:" & dictFirstParts.Item(item).PartNumber & vbNewLine &_ |
| "1st Quantity:" & dictFirstParts.Item(item).Quantity & vbNewLine &_ |
| "1st Location:" & dictFirstParts.Item(item).Location & vbNewLine &_ |
| "2nd Quantity:" & dictSecondParts.Item(item).Quantity & vbNewLine &_ |
| "2nd Location:" & dictSecondParts.Item(item).Location & vbNewLine &_ |
| "Is 2nd Source:" & dictFirstParts.Item(item).boolIsSecond & vbNewLine |
| if not dictFirstParts.Item(item).ParentPN="Unknown" then |
| arrCompare(2)=arrCompare(2) & "Parent PN:" & dictFirstParts.Item(item).ParentPN & vbNewLine |
| elseif not dictSecondParts.Item(item).ParentPN="Unknown" then |
| arrCompare(2)=arrCompare(2) & "Parent PN:" & dictSecondParts.Item(item).ParentPN & vbNewLine |
| else |
| arrCompare(2)=arrCompare(2) & "Parent PN:" & dictFirstParts.Item(item).ParentPN & vbNewLine |
| end if |
| |
| if not arrLack(0)="" then |
| arrCompare(2)=arrCompare(2) & "Only in 1st:" & arrLack(0) & vbNewLine |
| end if |
| if not arrLack(1)="" then |
| arrCompare(2)=arrCompare(2) & "Only in 2nd:" & arrLack(1) & vbNewLine |
| end if |
| arrCompare(2)=arrCompare(2) & vbNewLine |
| end if |
| end if |
| else |
| |
| arrCompare(0)=arrCompare(0) & "Part Number:" & dictFirstParts.Item(item).PartNumber & vbNewLine &_ |
| "Quantity:" & dictFirstParts.Item(item).Quantity & vbNewLine &_ |
| "Location:" & dictFirstParts.Item(item).Location & vbNewLine &_ |
| "Parent PN:" & dictFirstParts.Item(item).ParentPN & vbNewLine &_ |
| "Is 2nd Source:" & dictFirstParts.Item(item).boolIsSecond & vbNewLine |
| if dictFirstParts.Item(item).boolIsSecond then |
| arrCompare(0)=arrCompare(0) & "Main Source:" &_ |
| dictFirstParts.Item(item).MainSource & vbNewLine |
| end if |
| arrCompare(0)=arrCompare(0) & vbNewLine |
| end if |
| next |
| |
| |
| for each item in dictSecondParts.Keys |
| if not dictFirstParts.Exists(item) then |
| |
| arrCompare(1)=arrCompare(1) & "Part Number:" & dictSecondParts.Item(item).PartNumber & vbNewLine &_ |
| "Quantity:" & dictSecondParts.Item(item).Quantity & vbNewLine &_ |
| "Location:" & dictSecondParts.Item(item).Location & vbNewLine &_ |
| "Parent PN:" & dictSecondParts.Item(item).ParentPN & vbNewLine &_ |
| "Is 2nd Source:" & dictSecondParts.Item(item).boolIsSecond & vbNewLine |
| if dictSecondParts.Item(item).boolIsSecond then |
| arrCompare(1)=arrCompare(1) & "Main Source:" &_ |
| dictSecondParts.Item(item).MainSource & vbNewLine |
| end if |
| arrCompare(1)=arrCompare(1) & vbNewLine |
| end if |
| next |
| CompareDicts=arrCompare |
| end function |
| |
| |
| |
| |
| |
| function CompareLocation(arrayA,arrayB) |
| dim arrLack,strA,strB,item |
| arrLack=Array("","") |
| strA="," & Join(arrayA,",") & "," |
| strB="," & Join(arrayB,",") & "," |
| for each item in arrayA |
| if Instr(strB,item)=0 then arrLack(0)=arrLack(0) & "," & item |
| next |
| for each item in arrayB |
| if Instr(strA,item)=0 then arrLack(1)=arrLack(1) & "," & item |
| next |
| arrLack(0)=Mid(arrLack(0),2) |
| arrLack(1)=Mid(arrLack(1),2) |
| CompareLocation=arrLack |
| end function |
| |
| |
| class part |
| private PN,Qty,Loc |
| private boolNormalPN |
| public strSepar |
| public boolIsSecond |
| public ParentPN |
| public MainSource |
| |
| |
| property let PartNumber(strPartNumber) |
| if strPartNumber="" then |
| Err.Raise 101,"BomKit check error","Detected empty part number " & strPartNumber |
| end if |
| PN=strPartNumber |
| call CheckPN() |
| end property |
| property get PartNumber() |
| PartNumber=PN |
| end property |
| |
| |
| property let Quantity(intQuantity) |
| Qty=CInt(intQuantity) |
| if Qty<0 then |
| Err.Raise 102,"BomKit check error","Negative Quantity " & Qty |
| end if |
| end property |
| property get Quantity() |
| Quantity=Qty |
| end property |
| |
| |
| property let Location(strLocation) |
| Loc=strLocation |
| end property |
| property get Location() |
| Location=Loc |
| end property |
| |
| |
| private sub CheckPN() |
| dim re |
| set re=new RegExp |
| re.Pattern="^(\w{2}\.\w{5}\.\w{3}|\w{3}\.\w{5}\.\w{4})$" |
| if re.Test(PN) then |
| boolNormalPN=true |
| else |
| boolNormalPN=false |
| end if |
| end sub |
| |
| |
| private sub Class_Initialize |
| boolNormalPN=false |
| PN="" |
| Qty=0 |
| Loc="" |
| strSepar="," |
| boolIsSecond=false |
| ParentPN="Unknown" |
| MainSource="N/A" |
| end sub |
| |
| |
| public function CheckQty() |
| CheckQty=(Qty=UBound(Split(Loc,strSepar))+1) |
| end function |
| |
| |
| public sub CorrectQty() |
| Qty=RealQty() |
| end sub |
| |
| |
| public function RealQty() |
| RealQty=UBound(Split(Loc,strSepar))+1 |
| end function |
| |
| |
| public function IsNormalPN() |
| IsNormalPN=boolNormalPN |
| end function |
| |
| |
| public function IsBadPN() |
| IsBadPN=false |
| if Left(PN,2)="ZZ" then IsBadPN=true |
| dim re |
| set re=new RegExp |
| re.Pattern="^\s*$" |
| if re.Test(PN) then |
| IsBadPN=true |
| end if |
| end function |
| |
| |
| public function PNmayDip() |
| dim arrPN |
| if boolNormalPN then |
| arrPN=Split(PN,".") |
| PNmayDip=(20<=CInt(arrPN(0)) and CInt(arrPN(0))<=60) |
| else |
| PNmayDip=true |
| end if |
| end function |
| end classCOPY |