feat(inbound): 新增入库秤毛菜/净材入库功能
- 新增入库专用网络层(InboundApiService、InboundRepository、InboundNetworkModule、InboundInterceptor) - 新增入库相关数据模型(IngredientByTrace、SupplierOption、ZoneOption、GoodsSearchModel、CleanInboundParam、RawInboundParam、InboundApiResponse) - 新增 FormField 动态表单模型(FieldType 枚举、apiKey 字段映射、submitValueId 控制提交值) - 新增 FormFieldAdapter,基于 FlexboxLayoutManager 实现两列自动换行表单,支持五种字段类型 - 新增 InboundGoodsSearchDialog(溯源码检索食材)和 InboundGoodsStoreDialog(入库录入,表单转 Map 提交) - 新增 StoreViewModel,提交接口入参改为 Map<String, Any> - 重构 StoreActivity:注入 StoreViewModel,onResume 预加载供应商/区域列表到 GlobalData - 修改 GoodsListActivity:抽取 onGoodsSearchRequested() 供子类重写 - 修改 GoodsRecognizeDialog:StoreActivity 场景下打开 InboundGoodsStoreDialog - GlobalData 新增 inboundSupplierList / inboundZoneList 全局缓存 - build.gradle.kts 新增 flexbox:3.0.0 依赖 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -111,14 +111,14 @@ class HomeActivity : BaseActivity() {
|
||||
// 净材按钮点击提示
|
||||
binding.btnOrderPurchase.setOnClickListener {
|
||||
startActivity<StoreActivity> {
|
||||
//putExtra(GoodsListActivity.IS_RECEIPT_PAGE, false)
|
||||
putExtra(StoreActivity.EXTRA_STORE_TYPE, 0)
|
||||
}
|
||||
}
|
||||
|
||||
// 毛菜按钮点击提示
|
||||
binding.btnOrderSelfProcurement.setOnClickListener {
|
||||
startActivity<StoreActivity> {
|
||||
//putExtra(GoodsListActivity.IS_RECEIPT_PAGE, false)
|
||||
putExtra(StoreActivity.EXTRA_STORE_TYPE, 1)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user