diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index a17a6516..f3a3ebf6 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -37,6 +37,11 @@
android:name=".ViewModel.ActivityViewModel.DiyUpdate1Activity"
android:screenOrientation="portrait"
android:exported="false" />
+
+
+
-
+
+
+
+
+
+
obj = QueryDB.Get(BPA_GOODS_PROCESS_DETAIL.class, where, args, orderby);
-
- return obj.size() > 0 ? (BPA_GOODS_PROCESS_DETAIL) obj.get(0) : null;
- }
-
/**
* 根据商品属性组合查询旗下的工序列表
*
- * @param name
+ * @param groupId
* @return
*/
- public static ArrayList getByGoodsSubAttributeGroupName(String name) {
+ public static ArrayList getByGroupId(String groupId) {
String orderby = QueryDB.Desc_Sort_Up + ',' + QueryDB.Desc_Time_Up;
- String where = "isDelete=? and goodsSubAttributeGroupId=?";
- String[] args = new String[]{"0", name};
+ String where = "goodsSubAttributeGroupId=?";
+ String[] args = new String[]{"0", groupId};
ArrayList data = new ArrayList<>();
ArrayList