From dadf3df1c77b88f80744d552efd462fa0ad005f2 Mon Sep 17 00:00:00 2001 From: chenjianan Date: Wed, 19 Jun 2019 10:02:02 +0800 Subject: [PATCH] fixed bug --- src/api/PurchasingCenter/CreatePurchaseContract.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/PurchasingCenter/CreatePurchaseContract.js b/src/api/PurchasingCenter/CreatePurchaseContract.js index e0c9c5a9..b2f77cd0 100644 --- a/src/api/PurchasingCenter/CreatePurchaseContract.js +++ b/src/api/PurchasingCenter/CreatePurchaseContract.js @@ -79,7 +79,7 @@ export function saveRemark(price, num1, num2, num3, num4, num5) { method: 'post', data: { type: '4', - name: `update 采购管理_询价单明细_视图 set 备注 = ${price} where isnull(物料流水号,0) = isnull('${num1}',0) and 询价单流水号 = ${num2} and isnull(零件名称,'') = '${num3}' and isnull(零件图号,'') = '${num4}' and (isnull(规格,'') = '${num5}' or isnull(物料规格,'') = '${num5}')` + name: `update 采购管理_询价单明细_视图 set 备注 = '${price}' where isnull(物料流水号,0) = isnull('${num1}',0) and 询价单流水号 = ${num2} and isnull(零件名称,'') = '${num3}' and isnull(零件图号,'') = '${num4}' and (isnull(规格,'') = '${num5}' or isnull(物料规格,'') = '${num5}')` } }) }