Browse Source

YT-759:采购收货六个模块添加上架按钮

intex
songguoqiang 2 weeks ago
parent
commit
fac5200950
  1. 3
      src/views/wms/purchasereceiptManage/amvpurchasereceipt/amvPurchasereceiptRecordMain/index.vue
  2. 3
      src/views/wms/purchasereceiptManage/bspurchasereceipt/bsPurchasereceiptRecordMain/index.vue
  3. 3
      src/views/wms/purchasereceiptManage/developpurchasereceipt/developPurchasereceiptRecordMain/index.vue
  4. 3
      src/views/wms/purchasereceiptManage/jispurchasereceipt/jisPurchasereceiptRecordMain/index.vue
  5. 3
      src/views/wms/purchasereceiptManage/purchasereceipt/purchasereceiptRecordMain/index.vue
  6. 6
      src/views/wms/purchasereceiptManage/toolpurchasereceipt/toolPurchasereceiptRecordMain/index.vue

3
src/views/wms/purchasereceiptManage/amvpurchasereceipt/amvPurchasereceiptRecordMain/index.vue

@ -239,8 +239,7 @@ const butttondata = (row, $index) => {
hide: isShowputawayRequestFlagButton(row)
}), //
defaultButtons.mainPutawayRequestBtn({
hasPermi: 'wms:amv-purchasereceipt-record-main:createPutawayRequest',
hide: row.isPutaway==1?row.putawayRequestFlag == 'FALSE':'TRUE'
hide: (row.isPutaway==1 || row.putawayRequestFlag == 'FALSE')?false:true
}), //
defaultButtons.mainPurchasereturnRecordBtn({
hasPermi: 'wms:amv-purchasereceipt-record-main:createPurchasereturnRecord',

3
src/views/wms/purchasereceiptManage/bspurchasereceipt/bsPurchasereceiptRecordMain/index.vue

@ -239,8 +239,7 @@ const butttondata = (row, $index) => {
hide: isShowputawayRequestFlagButton(row)
}), //
defaultButtons.mainPutawayRequestBtn({
hasPermi: 'wms:bs-purchasereceipt-record-main:createPutawayRequest',
hide: row.isPutaway==1?row.putawayRequestFlag == 'FALSE':'TRUE'
hide: (row.isPutaway==1 || row.putawayRequestFlag == 'FALSE')?false:true
}), //
defaultButtons.mainPurchasereturnRecordBtn({
hasPermi: 'wms:bs-purchasereceipt-record-main:createPurchasereturnRecord',

3
src/views/wms/purchasereceiptManage/developpurchasereceipt/developPurchasereceiptRecordMain/index.vue

@ -243,8 +243,7 @@ const butttondata = (row, $index) => {
hide: row.isPutaway==1?row.putawayRequestFlag == 'FALSE':'TRUE'
}), //
defaultButtons.mainPurchasereturnRecordBtn({
hasPermi: 'wms:develop-purchasereceipt-record-main:createPurchasereturnRecord',
hide: row.purchasereturnRecordFlag == 'FALSE'
hide: (row.isPutaway==1 || row.putawayRequestFlag == 'FALSE')?false:true
}), // 退
//defaultButtons.mainListPlanCheckQualityReportBtn({hide:row.orderTypeM == "2"}), //
defaultButtons.mainListPlanCheckQualityReportBtn({ hide: isShowSourceTypeButton(row) }), //

3
src/views/wms/purchasereceiptManage/jispurchasereceipt/jisPurchasereceiptRecordMain/index.vue

@ -239,8 +239,7 @@ const butttondata = (row, $index) => {
hide: isShowputawayRequestFlagButton(row)
}), //
defaultButtons.mainPutawayRequestBtn({
hasPermi: 'wms:jis-purchasereceipt-record-main:createPutawayRequest',
hide: row.isPutaway==1?row.putawayRequestFlag == 'FALSE':'TRUE'
hide: (row.isPutaway==1 || row.putawayRequestFlag == 'FALSE')?false:true
}), //
defaultButtons.mainPurchasereturnRecordBtn({
hasPermi: 'wms:jis-purchasereceipt-record-main:createPurchasereturnRecord',

3
src/views/wms/purchasereceiptManage/purchasereceipt/purchasereceiptRecordMain/index.vue

@ -248,8 +248,7 @@ const butttondata = (row, $index) => {
hide: isShowputawayRequestFlagButton(row)
}), //
defaultButtons.mainPutawayRequestBtn({
hasPermi: 'wms:purchasereceipt-record-main:createPutawayRequest',
hide: row.isPutaway==1?row.putawayRequestFlag == 'FALSE':'TRUE'
hide: (row.isPutaway==1 || row.putawayRequestFlag == 'FALSE')?false:true
}), //
defaultButtons.mainPurchasereturnRecordBtn({
hasPermi: 'wms:purchasereceipt-record-main:createPurchasereturnRecord',

6
src/views/wms/purchasereceiptManage/toolpurchasereceipt/toolPurchasereceiptRecordMain/index.vue

@ -239,11 +239,11 @@ const butttondata = (row, $index) => {
hide: isShowputawayRequestFlagButton(row)
}), //
defaultButtons.mainPutawayRequestBtn({
hasPermi: 'wms:tool-purchasereceipt-record-main:createPutawayRequest',
hide: row.isPutaway==1?row.putawayRequestFlag == 'FALSE':'TRUE'
// hasPermi: 'wms:tool-purchasereceipt-record-main:createPutawayRequest',
hide: (row.isPutaway==1 || row.putawayRequestFlag == 'FALSE')?false:true
}), //
defaultButtons.mainPurchasereturnRecordBtn({
hasPermi: 'wms:tool-purchasereceipt-record-main:createPurchasereturnRecord',
hasPermi: true,
hide: row.purchasereturnRecordFlag == 'FALSE'
}), // 退
//defaultButtons.mainListPlanCheckQualityReportBtn({hide:row.orderTypeM == "2"}), //

Loading…
Cancel
Save