我构建了一个 powerapps 应用程序,并将其设置为连接到 MySQL(连接到仓库的本地托管数据库)。经过研究,我正在寻找一种将新产品输入其中的方法。
我们处理容器,因此当容器(额外或更少的产品)出现错误时,他们能够记录它,但它直接连接到数据库。
有没有办法让他们在有新产品时记录下来,但不应该在那个容器里?它不应该连接到数据库,但应该将产品/数量输出到连接到 onedrive 的 excel 表中(全部设置)
我被这个问题困扰了很长一段时间
Patch(
Product,
Defaults(Product),
{
FirstName: FirstName,
LastName: LastName,
AuditDate: Value(Today()),
Order: Gallery2.Selected.order_id,
Carton: Gallery2.Selected.cntnr_id,
Zone: Gallery2.Selected.zone_num,
Date: Gallery2.Selected.shift_date,
Customer: DataCardValue9.Text,
'Product (Product)': Gallery2.Selected.sku,
Location: Gallery2.Selected.loc_alias,
OP: Gallery2.Selected.user_id,
QRequested: Gallery2.Selected.quantity,
Actual: Value(TextInput1_2.Text),
CartonType: Gallery2.Selected.cntnr_type
});
Set(TotalUnits, TotalUnits + Abs(Gallery2.Selected.quantity - TextInput1_2));
Reset(TextInput1_2);
Reset(TextInput2_2)