我们在Acumatica有一个库存商品列表,现在想要上传他们的照片。 有没有办法大量上传库存物品的图像到Acumatica云平台? 感谢
答案 0 :(得分:0)
我将图像大量上传到Stock或Non-stock项目的建议是使用内置的Contract API,我创建了以下示例代码项目,它将使用in built" Default - 6.00.001& #34;版本6.1或更高版本中的终点。
layout = (ConstraintLayout)findViewById(R.id.container);
if (matched.length == 0) {
layout.setBackgroundResource(R.drawable.background_safe);
changeColor("#00FF00"); //assuming this is some local function?
messageView.setText(messageSafe);
}
else{
layout.setBackgroundResource(R.drawable.background_unsafe);
changeColor("#FF0000");
messageView.setText(messageUnSafe);
}
其他文档:http://asiablog.acumatica.com/2016/02/contract-based-web-services-api.html