mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-13 04:59:27 +08:00
完善采购订单备注
This commit is contained in:
Binary file not shown.
@@ -16,6 +16,7 @@ namespace Yi.Framework.DtoModel.ERP.Purchase
|
||||
public long TotalMoney { get; set; }
|
||||
public long PaidMoney { get; set; }
|
||||
|
||||
public string? Remarks { get; set; }
|
||||
public string SupplierName { get; set; } = string.Empty;
|
||||
public PurchaseStateEnum PurchaseState { get; set; }
|
||||
|
||||
|
||||
@@ -16,6 +16,8 @@ namespace Yi.Framework.DtoModel.ERP.Purchase
|
||||
public DateTime? NeedTime { get; set; }
|
||||
public string Buyer { get; set; } = string.Empty;
|
||||
|
||||
public string? Remarks { get; set; }
|
||||
|
||||
public long SupplierId { get; set; }
|
||||
|
||||
public List<PurchaseDetailsCreateUpdateInput>? PurchaseDetails { get; set; }
|
||||
|
||||
@@ -16,6 +16,8 @@ namespace Yi.Framework.DtoModel.ERP.Purchase
|
||||
public string? Buyer { get; set; }
|
||||
public long TotalMoney { get; set; }
|
||||
public long PaidMoney { get; set; }
|
||||
|
||||
public string? Remarks { get; set; }
|
||||
public PurchaseStateEnum PurchaseState { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,6 +57,11 @@ namespace Yi.Framework.Model.ERP.Entitys
|
||||
/// </summary>
|
||||
public float PaidMoney { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string? Remarks { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 采购状态
|
||||
/// </summary>
|
||||
|
||||
@@ -459,7 +459,7 @@
|
||||
<el-input placeholder="请输入物料" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-col :span="6">
|
||||
<el-form-item label="创建时间" style="width: 308px">
|
||||
<el-date-picker
|
||||
value-format="YYYY-MM-DD"
|
||||
@@ -470,6 +470,13 @@
|
||||
></el-date-picker>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="10">
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search"
|
||||
>查询</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
@@ -493,7 +500,7 @@
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-form-item label="备注" prop="remarks">
|
||||
<el-form-item label="订单备注" prop="remarks">
|
||||
{{ form.remarks }}
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
@@ -669,6 +676,7 @@ function handleGet(row) {
|
||||
getListByPurchaseId(row.id).then((response) => {
|
||||
form.value.purchaseDetails = response.data;
|
||||
});
|
||||
form.value.remarks=row.remarks;
|
||||
openDetails.value = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user