我有两个名为arraylist1和arraaylist2的数组列表。
Arraylist1 having fileds instock,Productcode,productname,batchnNo,saledQty,discount and amount, Which stores values from database table named ProductDetails.
Arraylist2 having fields Productcode,minQuantity,maxQuantity,discount,discountType, which stores values from different table named DiscountDetails.
我们需要 根据productcode比较arraylist1 和 arraylist2 。如果产品代码相同,那么我需要检查 来自 arraylist1 的特定产品代码的 saledQty,我们需要检查天气它将落在 arraylist2 的 minQuantity 和 maxQuantity 之间的范围内。(最小数量<=销售数量<=最大数量)
如果它落在 minQuantity 和 maxQuantity 的范围之间,我们需要从arraylist2中获取该特定 productCode 的折扣,并且我们需要将其显示在arraylist1中该特定代码的折扣列的位置。
任何人都可以帮助我..提前谢谢。