feat: 新增首页净材/毛菜入口按钮及StoreActivity称重识别页面

- 首页新增净材、毛菜两个渐变色按钮(蓝/橙),隐藏原ImageView入口
- 新增StoreActivity,继承GoodsListActivity,复用秤监听、相机、识别弹窗能力
- GoodsListActivity.replaceIncludeContent()新增else分支,非采购/自采页面隐藏flContainer
- BaseDialog设备列表提取为常量,优化小屏幕判断逻辑
- 更新本地测试环境地址及环境切换弹窗文案

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-26 18:54:30 +08:00
co-authored by Claude Sonnet 4.6
parent fa58304ca1
commit ac9494a0f3
10 changed files with 144 additions and 7 deletions
@@ -14,11 +14,17 @@ import com.sw.inbound.activity.GoodsListActivity
import com.sw.inbound.utils.ext.dp
import com.sw.inbound.utils.ext.hideKeyboard
//测试设备,小屏幕
private val devices = listOf(
"f0bcabbb-0d58-3b14-8bed-9863b7ec61ef",
"3dff871a-c66a-3fd8-93ce-81b57ead80f4"
)
abstract class BaseDialog(
context: Context,
var defWidth: Int = 1500.dp,
// var defHeight: Int = 900.dp
var defHeight: Int = if ("f0bcabbb-0d58-3b14-8bed-9863b7ec61ef" == GlobalData.deviceId) 750.dp else 900.dp
var defHeight: Int = if (devices.contains(GlobalData.deviceId)) 750.dp else 900.dp
) : Dialog(context, R.style.DialogTheme) {
override fun onCreate(savedInstanceState: Bundle?) {