Function ItemAdd() As Boolean
Try
Dim Items As New Item
If GridView_Item.Items.Count > 1 Then
For i As Integer = 1 To GridView_Item.Items.Count - 1
If Not PHBill Is Nothing Then
Items.BillNum = PHBill.Billnum
End If
If GridView_Item.Items(i).Cells(1).Text.Trim.ToString.Replace(" ","") <> "" Then
Items.Item = GridView_Item.Items(i).Cells(1).Text.Trim.ToString.Replace(" ","")
End If
If GridView_Item.Items(i).Cells(2).Text.Trim.ToString.Replace(" ","") <> "" Then
Items.Name = GridView_Item.Items(i).Cells(2).Text.Trim.ToString.Replace(" ","")
End If
If GridView_Item.Items(i).Cells(3).Text.Trim.ToString.Replace(" ","") <> "" Then
Items.Model = GridView_Item.Items(i).Cells(3).Text.Trim.ToString.Replace(" ","")
End If
If GridView_Item.Items(i).Cells(4).Text.Trim.ToString.Replace(" ","") <> "" Then
Items.Units = GridView_Item.Items(i).Cells(4).Text.Trim.ToString.Replace(" ","")
End If
Items.Invent = CType(GridView_Item.Items(i).Cells(5).Text,Integer)
Items.Amount = CType(GridView_Item.Items(i).Cells(6).Text,Integer)
If GridView_Item.Items(i).Cells(7).Text.Trim.ToString.Replace(" ","") <> "" Then
Items.Delivery = GridView_Item.Items(i).Cells(7).Text.Trim.ToString
End If
If GridView_Item.Items(i).Cells(8).Text.Trim.ToString.Replace(" ","") <> "" Then
Items.ItemMemo = GridView_Item.Items(i).Cells(8).Text.Trim.ToString.Replace(" ","")
End If
Items.BuyDate = Nothing Items.Price = "" Items.HopePrice = "" Items.SumPrice = "" If Not Items.SaveAsNew Then Return False End If Next Return True End If Catch ex As Exception End Try End Function
原文链接:https://www.f2er.com/vb/262367.html